summaryrefslogtreecommitdiffstats
path: root/source/compiler-core/slang-token.cpp
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 /source/compiler-core/slang-token.cpp
parenta729c15e9dce9f5116a38afc66329ab2ca4cea54 (diff)
format
* format * Minor test fixes * enable checking cpp format in ci
Diffstat (limited to 'source/compiler-core/slang-token.cpp')
-rw-r--r--source/compiler-core/slang-token.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/compiler-core/slang-token.cpp b/source/compiler-core/slang-token.cpp
index 576b08d66..5dd64b96a 100644
--- a/source/compiler-core/slang-token.cpp
+++ b/source/compiler-core/slang-token.cpp
@@ -1,19 +1,19 @@
// slang-token.cpp
#include "slang-token.h"
-//#include <assert.h>
+// #include <assert.h>
-namespace Slang {
+namespace Slang
+{
char const* TokenTypeToString(TokenType type)
{
- switch( type )
+ switch (type)
{
- default:
- SLANG_ASSERT(!"unexpected");
- return "<uknown>";
+ default: SLANG_ASSERT(!"unexpected"); return "<uknown>";
-#define TOKEN(NAME, DESC) case TokenType::NAME: return DESC;
+#define TOKEN(NAME, DESC) \
+ case TokenType::NAME: return DESC;
#include "slang-token-defs.h"
}
}