From 6f7124c6e95acac9917a6a81bb3f85d2ad0d7492 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Wed, 7 Dec 2016 22:07:20 -0800 Subject: [PATCH] Cleanup. --- include/bx/string.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/bx/string.h b/include/bx/string.h index 03fce2f..ecc4f51 100644 --- a/include/bx/string.h +++ b/include/bx/string.h @@ -636,11 +636,12 @@ namespace bx { public: StringT() - : StringView("", 0) + : StringView() { } StringT(const StringT& _rhs) + : StringView() { set(_rhs.m_ptr, _rhs.m_len); }