diff options
author | Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> | 2022-03-07 23:38:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-07 22:38:58 -0600 |
commit | 419d386bd9d1221f922421a1793753c2cfba350c (patch) | |
tree | 7c74e8f4a42e4d0c504de77c0a7050bfe14437c9 /lib/compilers/clang.js | |
parent | ad7d810b744e62dec97f800f3c9024b1ea9e2b0a (diff) | |
download | compiler-explorer-419d386bd9d1221f922421a1793753c2cfba350c.tar.gz compiler-explorer-419d386bd9d1221f922421a1793753c2cfba350c.zip |
Added keyword-spacing eslint rule and fixed instances of inconsistent spacing (#3428)gh-2166
Diffstat (limited to 'lib/compilers/clang.js')
-rw-r--r-- | lib/compilers/clang.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/clang.js b/lib/compilers/clang.js index 4465b2a28..e4c044c33 100644 --- a/lib/compilers/clang.js +++ b/lib/compilers/clang.js @@ -22,8 +22,8 @@ // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. -import path from 'path'; import fs from 'fs'; +import path from 'path'; import { BaseCompiler } from '../base-compiler'; import { AmdgpuAsmParser } from '../parsers/asm-parser-amdgpu'; @@ -46,7 +46,7 @@ export class ClangCompiler extends BaseCompiler { } runExecutable(executable, executeParameters, homeDir) { - if(this.asanSymbolizerPath) { + if (this.asanSymbolizerPath) { executeParameters.env = { ASAN_SYMBOLIZER_PATH: this.asanSymbolizerPath, ...executeParameters.env, |