diff options
author | Marc Poulhiès <dkm@kataplop.net> | 2024-02-24 19:21:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-24 19:21:23 +0100 |
commit | 5ebd04f90ef0ab94ed9d14dc6662d5550a6f6b41 (patch) | |
tree | d9a03732c93bb2d79be9aa3f4b0d34fed8a94eec /lib/compilers/cppfront.ts | |
parent | 3a109622db85da9e07f04ce223b721e2d4bec44a (diff) | |
download | compiler-explorer-5ebd04f90ef0ab94ed9d14dc6662d5550a6f6b41.tar.gz compiler-explorer-5ebd04f90ef0ab94ed9d14dc6662d5550a6f6b41.zip |
Change getCompilerResultLanguageId prototype (#6148)gh-10765
Diffstat (limited to 'lib/compilers/cppfront.ts')
-rw-r--r-- | lib/compilers/cppfront.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/cppfront.ts b/lib/compilers/cppfront.ts index 29d935c0b..4ddc7948a 100644 --- a/lib/compilers/cppfront.ts +++ b/lib/compilers/cppfront.ts @@ -41,7 +41,7 @@ export class CppFrontCompiler extends BaseCompiler { this.outputFilebase = 'example'; } - override getCompilerResultLanguageId() { + override getCompilerResultLanguageId(filters?: ParseFiltersAndOutputOptions): string | undefined { return 'cppp'; } |