diff options
Diffstat (limited to 'lib/compilers/nim.ts')
-rw-r--r-- | lib/compilers/nim.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/nim.ts b/lib/compilers/nim.ts index 81482a163..d16a36903 100644 --- a/lib/compilers/nim.ts +++ b/lib/compilers/nim.ts @@ -126,7 +126,7 @@ export class NimCompiler extends BaseCompiler { libPaths: string[], libLinks: string[], userOptions: string[], - staticLibLinks: string[], + staticLibLinks: string[] ) { return options.concat( libIncludes, @@ -135,7 +135,7 @@ export class NimCompiler extends BaseCompiler { libLinks, userOptions, [this.filename(inputFilename)], - staticLibLinks, + staticLibLinks ); } } |