summaryrefslogtreecommitdiffstats
path: root/source/core/slang-string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/slang-string.cpp')
-rw-r--r--source/core/slang-string.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/core/slang-string.cpp b/source/core/slang-string.cpp
index 8b2a35b3f..22049f82d 100644
--- a/source/core/slang-string.cpp
+++ b/source/core/slang-string.cpp
@@ -361,6 +361,12 @@ namespace Slang
append(&chr, &chr + 1);
}
+
+ void String::appendChar(char chr)
+ {
+ append(&chr, &chr + 1);
+ }
+
void String::append(String const& str)
{
if (!m_buffer)