From 675bed5a39be37b1611c0e871d8ea7bc195575c8 Mon Sep 17 00:00:00 2001 From: Federico Terraneo Date: Mon, 13 May 2024 17:32:46 +0200 Subject: [PATCH] Fix for older compilers --- Projects/Sources/importer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/Sources/importer.h b/Projects/Sources/importer.h index a7b00fe..2c1e0de 100644 --- a/Projects/Sources/importer.h +++ b/Projects/Sources/importer.h @@ -61,7 +61,7 @@ T tryImportSymbol(const char *funcName) template T importSymbol(const char *funcName) { - T result = tryImportSymbol(funcName); + T result = tryImportSymbol(funcName); if(result) return result; fprintf(stderr, "Can't get handle to %s in all loaded modules.\n", funcName);