summaryrefslogtreecommitdiffstats
path: root/source/core/slang-writer.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/slang-writer.h')
-rw-r--r--source/core/slang-writer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/core/slang-writer.h b/source/core/slang-writer.h
index 759644fde..380823b39 100644
--- a/source/core/slang-writer.h
+++ b/source/core/slang-writer.h
@@ -16,6 +16,7 @@ class WriterHelper
public:
SlangResult print(const char* format, ...);
SlangResult put(const char* text);
+ SlangResult put(const UnownedStringSlice& text);
SLANG_FORCE_INLINE SlangResult write(const char* chars, size_t numChars) { return m_writer->write(chars, numChars); }
SLANG_FORCE_INLINE void flush() { m_writer->flush(); }