diff options
| author | Ellie Hermaszewska <ellieh@nvidia.com> | 2024-10-29 14:49:26 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-29 14:49:26 +0800 |
| commit | f65d756bff8d4c5cbc15bd0322a2ae8e6b896a21 (patch) | |
| tree | ea1d61342cd29368e19135000ec2948813096205 /tools/slangd/main.cpp | |
| parent | a729c15e9dce9f5116a38afc66329ab2ca4cea54 (diff) | |
format
* format
* Minor test fixes
* enable checking cpp format in ci
Diffstat (limited to 'tools/slangd/main.cpp')
| -rw-r--r-- | tools/slangd/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/slangd/main.cpp b/tools/slangd/main.cpp index 42d6e0c1b..240992273 100644 --- a/tools/slangd/main.cpp +++ b/tools/slangd/main.cpp @@ -2,11 +2,11 @@ // This file implements the entry point for `slangd`, the daemon process of Slang's language server. -#include <thread> - #include "../../source/core/slang-basic.h" #include "../../source/slang/slang-language-server.h" +#include <thread> + int main(int argc, const char* const* argv) { bool isDebug = false; @@ -23,7 +23,7 @@ int main(int argc, const char* const* argv) } Slang::LanguageServerStartupOptions options; options.parse(argc, argv); - auto result = Slang::runLanguageServer(options); + auto result = Slang::runLanguageServer(options); slang::shutdown(); return result; } |
