Skip to content

Commit 211b2ff

Browse files
authored
Silent compiler warning about missing override keywords (shader-slang#4018)
Adding "override" keywords for member functions whereever they need. The compiler warning was visible on CI build but not visible on local visual studio build.
1 parent 97631e9 commit 211b2ff

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/compiler-core/slang-metal-compiler.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace Slang
2626

2727
virtual SLANG_NO_THROW bool SLANG_MCALL isFileBased() override { return true; }
2828

29-
virtual SLANG_NO_THROW SlangResult SLANG_MCALL compile(const CompileOptions& options, IArtifact** outArtifact)
29+
virtual SLANG_NO_THROW SlangResult SLANG_MCALL compile(const CompileOptions& options, IArtifact** outArtifact) override
3030
{
3131
// All compile requests should be routed directly to the inner compiler.
3232
return cppCompiler->compile(options, outArtifact);

source/slang/slang-check-decl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9847,7 +9847,7 @@ namespace Slang
98479847
loc = Base::sourceLocStack.getLast();
98489848
handleReferenceFunc(decl, decl->inferredCapabilityRequirements, loc);
98499849
}
9850-
virtual void processDeclModifiers(Decl* decl)
9850+
virtual void processDeclModifiers(Decl* decl) override
98519851
{
98529852
if (decl)
98539853
handleReferenceFunc(decl, decl->inferredCapabilityRequirements, decl->loc);

source/slang/slang-compiler.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1346,7 +1346,7 @@ namespace Slang
13461346
char const* name,
13471347
SlangStage stage,
13481348
slang::IEntryPoint** outEntryPoint,
1349-
ISlangBlob** outDiagnostics)
1349+
ISlangBlob** outDiagnostics) override
13501350
{
13511351
ComPtr<slang::IEntryPoint> entryPoint(findAndCheckEntryPoint(UnownedStringSlice(name), stage, outDiagnostics));
13521352
if ((!entryPoint))

0 commit comments

Comments
 (0)