Branimir Karadžić 9 years ago
parent
commit
6f7124c6e9
1 changed files with 2 additions and 1 deletions
  1. 2 1
      include/bx/string.h

+ 2 - 1
include/bx/string.h

@@ -636,11 +636,12 @@ namespace bx
 	{
 	{
 	public:
 	public:
 		StringT()
 		StringT()
-			: StringView("", 0)
+			: StringView()
 		{
 		{
 		}
 		}
 
 
 		StringT(const StringT<AllocatorT>& _rhs)
 		StringT(const StringT<AllocatorT>& _rhs)
+			: StringView()
 		{
 		{
 			set(_rhs.m_ptr, _rhs.m_len);
 			set(_rhs.m_ptr, _rhs.m_len);
 		}
 		}