summaryrefslogtreecommitdiffstats
path: root/source/core/slang-io.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/slang-io.cpp')
-rw-r--r--source/core/slang-io.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/core/slang-io.cpp b/source/core/slang-io.cpp
index 30ba41d0f..50e98c60c 100644
--- a/source/core/slang-io.cpp
+++ b/source/core/slang-io.cpp
@@ -324,7 +324,7 @@ namespace Slang
/* static */void Path::combineIntoBuilder(const UnownedStringSlice& path1, const UnownedStringSlice& path2, StringBuilder& outBuilder)
{
- outBuilder.Clear();
+ outBuilder.clear();
outBuilder.Append(path1);
append(outBuilder, path2);
}
@@ -519,7 +519,7 @@ namespace Slang
/* static */void Path::join(const UnownedStringSlice* slices, Index count, StringBuilder& out)
{
- out.Clear();
+ out.clear();
if (count == 0)
{