summaryrefslogtreecommitdiff
path: root/source/compiler-core/slang-artifact-associated-impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/compiler-core/slang-artifact-associated-impl.cpp')
-rw-r--r--source/compiler-core/slang-artifact-associated-impl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/compiler-core/slang-artifact-associated-impl.cpp b/source/compiler-core/slang-artifact-associated-impl.cpp
index 770c2601f..f6f64e294 100644
--- a/source/compiler-core/slang-artifact-associated-impl.cpp
+++ b/source/compiler-core/slang-artifact-associated-impl.cpp
@@ -76,7 +76,7 @@ void* ArtifactDiagnostics::castAs(const Guid& guid)
void ArtifactDiagnostics::reset()
{
m_diagnostics.clear();
- m_raw.Clear();
+ m_raw.clear();
m_result = SLANG_OK;
m_allocator.deallocateAll();
@@ -95,7 +95,7 @@ void ArtifactDiagnostics::add(const Diagnostic& inDiagnostic)
void ArtifactDiagnostics::setRaw(const CharSlice& slice)
{
- m_raw.Clear();
+ m_raw.clear();
m_raw << asStringSlice(slice);
}