diff options
Diffstat (limited to 'source')
| -rw-r--r-- | source/slang/slang-check.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/slang/slang-check.cpp b/source/slang/slang-check.cpp index 9a4a01045..464dafcd9 100644 --- a/source/slang/slang-check.cpp +++ b/source/slang/slang-check.cpp @@ -5359,6 +5359,11 @@ namespace Slang CASE(+); // TODO: this can also be unary... CASE(*); + CASE(<<); + CASE(>>); + CASE(&); + CASE(|); + CASE(^); #undef CASE // binary operators with chance of divide-by-zero |
