diff options
author | Matt Godbolt <matt@godbolt.org> | 2023-04-01 20:29:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-01 20:29:06 -0500 |
commit | 54a99f6d5120cbbcd2d17978b12749adab4c4715 (patch) | |
tree | 171e20dc0cdde049197f03b5dc2bc2eb609afa4b /lib/compilers/win32-mingw-gcc.ts | |
parent | 13d16fcb7b72890787e6a0f51a336961453629a7 (diff) | |
download | compiler-explorer-54a99f6d5120cbbcd2d17978b12749adab4c4715.tar.gz compiler-explorer-54a99f6d5120cbbcd2d17978b12749adab4c4715.zip |
Upgrade all minor versions; format; bump sonar and css minimizer (#4920)gh-6999
Diffstat (limited to 'lib/compilers/win32-mingw-gcc.ts')
-rw-r--r-- | lib/compilers/win32-mingw-gcc.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/win32-mingw-gcc.ts b/lib/compilers/win32-mingw-gcc.ts index edfb0172b..4e3106bc5 100644 --- a/lib/compilers/win32-mingw-gcc.ts +++ b/lib/compilers/win32-mingw-gcc.ts @@ -62,8 +62,8 @@ export class Win32MingWGcc extends GCCCompiler { userOptions: string[], staticLibLinks: string[], ) { - const newUserOptions = userOptions.filter((opt) => !opt.startsWith('-l')); - const newLinkOptions = userOptions.filter((opt) => opt.startsWith('-l')); + const newUserOptions = userOptions.filter(opt => !opt.startsWith('-l')); + const newLinkOptions = userOptions.filter(opt => opt.startsWith('-l')); return options.concat( newUserOptions, |