summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--source/compiler-core/slang-metal-compiler.cpp2
-rw-r--r--source/slang/slang-check-decl.cpp2
-rwxr-xr-xsource/slang/slang-compiler.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/source/compiler-core/slang-metal-compiler.cpp b/source/compiler-core/slang-metal-compiler.cpp
index 04bcf0f57..d3bf92bf3 100644
--- a/source/compiler-core/slang-metal-compiler.cpp
+++ b/source/compiler-core/slang-metal-compiler.cpp
@@ -26,7 +26,7 @@ namespace Slang
virtual SLANG_NO_THROW bool SLANG_MCALL isFileBased() override { return true; }
- virtual SLANG_NO_THROW SlangResult SLANG_MCALL compile(const CompileOptions& options, IArtifact** outArtifact)
+ virtual SLANG_NO_THROW SlangResult SLANG_MCALL compile(const CompileOptions& options, IArtifact** outArtifact) override
{
// All compile requests should be routed directly to the inner compiler.
return cppCompiler->compile(options, outArtifact);
diff --git a/source/slang/slang-check-decl.cpp b/source/slang/slang-check-decl.cpp
index cb68dced9..0f9da12c4 100644
--- a/source/slang/slang-check-decl.cpp
+++ b/source/slang/slang-check-decl.cpp
@@ -9847,7 +9847,7 @@ namespace Slang
loc = Base::sourceLocStack.getLast();
handleReferenceFunc(decl, decl->inferredCapabilityRequirements, loc);
}
- virtual void processDeclModifiers(Decl* decl)
+ virtual void processDeclModifiers(Decl* decl) override
{
if (decl)
handleReferenceFunc(decl, decl->inferredCapabilityRequirements, decl->loc);
diff --git a/source/slang/slang-compiler.h b/source/slang/slang-compiler.h
index fc4bc355b..105db5789 100755
--- a/source/slang/slang-compiler.h
+++ b/source/slang/slang-compiler.h
@@ -1346,7 +1346,7 @@ namespace Slang
char const* name,
SlangStage stage,
slang::IEntryPoint** outEntryPoint,
- ISlangBlob** outDiagnostics)
+ ISlangBlob** outDiagnostics) override
{
ComPtr<slang::IEntryPoint> entryPoint(findAndCheckEntryPoint(UnownedStringSlice(name), stage, outDiagnostics));
if ((!entryPoint))