From f64aa0293301eaf89895f7c2117de848f4132f29 Mon Sep 17 00:00:00 2001 From: Ignacio Etcheverry Date: Fri, 19 Apr 2019 01:10:08 +0200 Subject: Use StringBuilder in C# bindings generator - Also fixed generation of empty summary comments when no comment should have been generated. --- core/string_builder.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'core/string_builder.h') diff --git a/core/string_builder.h b/core/string_builder.h index 40d70e8f45..0c4985d230 100644 --- a/core/string_builder.h +++ b/core/string_builder.h @@ -70,6 +70,10 @@ public: return appended_strings.size(); } + _FORCE_INLINE_ uint32_t get_string_length() const { + return string_length; + } + String as_string() const; _FORCE_INLINE_ operator String() const { -- cgit v1.2.3