diff options
author | RabsRincon <ruben@rinconblanco.es> | 2022-04-26 05:26:48 +0200 |
---|---|---|
committer | RabsRincon <ruben@rinconblanco.es> | 2022-04-26 05:26:48 +0200 |
commit | 40fe769459c4c34c58af530f32fc3a33a7ced2d7 (patch) | |
tree | 9e2560c5aa9e31762d068b29c00a533f633c8d4c /lib/compilers/ada.js | |
parent | fb35d64a92d2f4c2dcf0109ddaf1b999563a0b3c (diff) | |
download | compiler-explorer-40fe769459c4c34c58af530f32fc3a33a7ced2d7.tar.gz compiler-explorer-40fe769459c4c34c58af530f32fc3a33a7ced2d7.zip |
Set comma-dangle to always in server code and es5 in client codegh-2532
Diffstat (limited to 'lib/compilers/ada.js')
-rw-r--r-- | lib/compilers/ada.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/ada.js b/lib/compilers/ada.js index 936f173d9..83ec0294a 100644 --- a/lib/compilers/ada.js +++ b/lib/compilers/ada.js @@ -88,7 +88,7 @@ export class AdaCompiler extends BaseCompiler { '-eS', // commands are not errors '-cargs', // Compiler Switches for gcc. '-o', - outputFilename + outputFilename, ); if (this.compiler.intelAsm && filters.intel) { @@ -102,7 +102,7 @@ export class AdaCompiler extends BaseCompiler { 'make', '-eS', '-g', - '-cargs' // Compiler Switches for gcc. + '-cargs', // Compiler Switches for gcc. ); } |