diff options
| author | Jay Kwak <82421531+jkwak-work@users.noreply.github.com> | 2024-06-06 11:21:23 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-06 11:21:23 -0700 |
| commit | fa664d1419659e3c56db823c60f2b9cc088455cd (patch) | |
| tree | 26cbe8f09e0d30317889b7f9a2498670cf93d9e6 /source/slang/slang-ir-link.cpp | |
| parent | f1490526be567059a8e4b98aa41eef698065aee1 (diff) | |
Fix build warnings and treat warnings as error on CI (#4276)
* Fix build warnings and treat warnings as error
Diffstat (limited to 'source/slang/slang-ir-link.cpp')
| -rw-r--r-- | source/slang/slang-ir-link.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/slang/slang-ir-link.cpp b/source/slang/slang-ir-link.cpp index 26d96690f..eb660c8a7 100644 --- a/source/slang/slang-ir-link.cpp +++ b/source/slang/slang-ir-link.cpp @@ -1509,6 +1509,7 @@ static bool doesTargetAllowUnresolvedFuncSymbol(TargetRequest* req) case CodeGenTarget::SPIRV: if (req->getOptionSet().getBoolOption(CompilerOptionName::IncompleteLibrary)) return true; + return false; default: return false; } |
