diff options
author | Rubén Rincón Blanco <ruben@rinconblanco.es> | 2022-11-17 15:20:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-17 15:20:12 +0100 |
commit | b67f5cfaa269433e679e36d3f5acdb038e746a11 (patch) | |
tree | 211437026738f6f5333973eeacc5932255ff22be /lib/compilers/carbon.js | |
parent | d184d99f37e39b45d584d40140a2cbddbfe05def (diff) | |
download | compiler-explorer-b67f5cfaa269433e679e36d3f5acdb038e746a11.tar.gz compiler-explorer-b67f5cfaa269433e679e36d3f5acdb038e746a11.zip |
Fix Python argument order (#4295)gh-4907
Diffstat (limited to 'lib/compilers/carbon.js')
-rw-r--r-- | lib/compilers/carbon.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/carbon.js b/lib/compilers/carbon.js index d6c865939..615612cfc 100644 --- a/lib/compilers/carbon.js +++ b/lib/compilers/carbon.js @@ -33,7 +33,7 @@ export class CarbonCompiler extends BaseCompiler { constructor(compilerInfo, env) { super(compilerInfo, env); - this.compiler.demangler = null; + this.compiler.demangler = ''; this.demanglerClass = null; } |