diff options
author | Romaric Jodin <89833130+rjodinchr@users.noreply.github.com> | 2022-10-10 13:02:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-10 13:02:50 +0200 |
commit | 72a19da53844e0cf2d8ec506ff3977f2008e5537 (patch) | |
tree | 926e41f36ec22814fbe736b42f129051a37fb826 /lib/compilers/cppfront.ts | |
parent | b58deaf864b1788b477d88b03a3fe176cda2478a (diff) | |
download | compiler-explorer-72a19da53844e0cf2d8ec506ff3977f2008e5537.tar.gz compiler-explorer-72a19da53844e0cf2d8ec506ff3977f2008e5537.zip |
asm-mode: better tokenization for spirv (#4024)gh-4447
Diffstat (limited to 'lib/compilers/cppfront.ts')
-rw-r--r-- | lib/compilers/cppfront.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/compilers/cppfront.ts b/lib/compilers/cppfront.ts index 37db5aee0..3ad588807 100644 --- a/lib/compilers/cppfront.ts +++ b/lib/compilers/cppfront.ts @@ -40,6 +40,10 @@ export class CppFrontCompiler extends BaseCompiler { this.outputFilebase = 'example'; } + override getCompilerResultLanguageId() { + return 'cppp'; + } + override optionsForFilter(filters: ParseFilters, outputFilename: any) { return []; } |