diff options
Diffstat (limited to 'source/core/slang-string.cpp')
| -rw-r--r-- | source/core/slang-string.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/core/slang-string.cpp b/source/core/slang-string.cpp index 2420cb7d7..b195e12d5 100644 --- a/source/core/slang-string.cpp +++ b/source/core/slang-string.cpp @@ -298,6 +298,11 @@ namespace Slang append(slice.begin(), slice.end()); } + void String::append(UnownedStringSlice const& slice) + { + append(slice.begin(), slice.end()); + } + void String::append(int32_t value, int radix) { enum { kCount = 33 }; |
