summaryrefslogtreecommitdiff
path: root/source/slang/slang-repro.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-repro.cpp')
-rw-r--r--source/slang/slang-repro.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/slang/slang-repro.cpp b/source/slang/slang-repro.cpp
index 32f8d3289..4e5a03bc3 100644
--- a/source/slang/slang-repro.cpp
+++ b/source/slang/slang-repro.cpp
@@ -26,6 +26,7 @@ namespace Slang {
// to set up the thing to hash.
//
// Note that bool is in the list because size of bool can change between compilers.
+// clang-format off
#define SLANG_STATE_TYPES(x) \
x(Util::FileState) \
x(Util::PathInfoState) \
@@ -52,7 +53,8 @@ namespace Slang {
x(OptimizationLevel) \
x(ContainerFormat) \
x(PassThroughMode) \
- x(SlangMatrixLayoutMode) \
+ x(SlangMatrixLayoutMode)
+// clang-format on
#define SLANG_STATE_TYPE_SIZE(x) uint32_t(sizeof(x)),