aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/win32.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/win32.ts')
-rw-r--r--lib/compilers/win32.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/win32.ts b/lib/compilers/win32.ts
index 8f2cff314..0bb8c07e2 100644
--- a/lib/compilers/win32.ts
+++ b/lib/compilers/win32.ts
@@ -91,7 +91,7 @@ export class Win32Compiler extends BaseCompiler {
}
override getStaticLibraryLinks(libraries) {
- return _.map(super.getSortedStaticLibraries(libraries), lib => {
+ return super.getSortedStaticLibraries(libraries).map(lib => {
return '"' + lib + '.lib"';
});
}