summaryrefslogtreecommitdiffstats
path: root/tools/render-test/diagnostics.h
diff options
context:
space:
mode:
authorEllie Hermaszewska <ellieh@nvidia.com>2024-10-29 14:49:26 +0800
committerGitHub <noreply@github.com>2024-10-29 14:49:26 +0800
commitf65d756bff8d4c5cbc15bd0322a2ae8e6b896a21 (patch)
treeea1d61342cd29368e19135000ec2948813096205 /tools/render-test/diagnostics.h
parenta729c15e9dce9f5116a38afc66329ab2ca4cea54 (diff)
format
* format * Minor test fixes * enable checking cpp format in ci
Diffstat (limited to 'tools/render-test/diagnostics.h')
-rw-r--r--tools/render-test/diagnostics.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/tools/render-test/diagnostics.h b/tools/render-test/diagnostics.h
index fa4c8a389..26872f5fa 100644
--- a/tools/render-test/diagnostics.h
+++ b/tools/render-test/diagnostics.h
@@ -1,12 +1,10 @@
#ifndef SLANG_CORE_DIAGNOSTICS_H
#define SLANG_CORE_DIAGNOSTICS_H
+#include "../../source/compiler-core/slang-diagnostic-sink.h"
+#include "../../source/compiler-core/slang-source-loc.h"
#include "../../source/core/slang-basic.h"
#include "../../source/core/slang-writer.h"
-
-#include "../../source/compiler-core/slang-source-loc.h"
-#include "../../source/compiler-core/slang-diagnostic-sink.h"
-
#include "slang.h"
namespace Slang
@@ -18,8 +16,8 @@ namespace RenderTestDiagnostics
{
#define DIAGNOSTIC(id, severity, name, messageFormat) extern const DiagnosticInfo name;
#include "diagnostic-defs.h"
-}
+} // namespace RenderTestDiagnostics
-}
+} // namespace Slang
#endif