summaryrefslogtreecommitdiff
path: root/source/slang/slang-compiler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-compiler.cpp')
-rw-r--r--source/slang/slang-compiler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/slang/slang-compiler.cpp b/source/slang/slang-compiler.cpp
index 28ffee152..ff7228854 100644
--- a/source/slang/slang-compiler.cpp
+++ b/source/slang/slang-compiler.cpp
@@ -792,10 +792,10 @@ namespace Slang
if (diagnostic.getLength() > 0)
{
- builder.Append(diagnostic);
+ builder.append(diagnostic);
if (!diagnostic.endsWith("\n"))
{
- builder.Append("\n");
+ builder.append("\n");
}
}