From 35d21c08813242002e31f1d9bbc45fed5a21ebde Mon Sep 17 00:00:00 2001 From: Marcelo Fernandez Date: Thu, 22 Mar 2018 00:17:18 -0300 Subject: Fix several in-class initialization clang warning --- core/string_buffer.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'core/string_buffer.h') diff --git a/core/string_buffer.h b/core/string_buffer.h index b148e45544..7e9b151bea 100644 --- a/core/string_buffer.h +++ b/core/string_buffer.h @@ -39,7 +39,7 @@ class StringBuffer { CharType short_buffer[SHORT_BUFFER_SIZE]; String buffer; - int string_length = 0; + int string_length; _FORCE_INLINE_ CharType *current_buffer_ptr() { return static_cast &>(buffer).empty() ? short_buffer : buffer.ptrw(); @@ -79,6 +79,10 @@ public: _FORCE_INLINE_ operator String() { return as_string(); } + + StringBuffer() { + string_length = 0; + } }; template -- cgit v1.2.3