From 2e8092af9ac2e7ce0410030658b57c4ed343b244 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Emmanuel=20Beno=C3=AEt?= <tseeker@nocternity.net>
Date: Thu, 2 Nov 2017 10:40:26 +0100
Subject: [PATCH] Strings - Automatically construct from char*

---
 include/ebcl/Strings.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/ebcl/Strings.hh b/include/ebcl/Strings.hh
index d44d44b..a8e47da 100644
--- a/include/ebcl/Strings.hh
+++ b/include/ebcl/Strings.hh
@@ -172,7 +172,7 @@ class T_String
 	//	- create a dynamic string otherwise.
 	// Because of this, it is relatively slow and should be avoided in
 	// general.
-	explicit T_String( char const* initial );
+	T_String( char const* initial );
 
 	T_String( T_StringBuilder&& sb );
 	T_String( T_StringBuilder const& sb );