Skip to content

Commit

Permalink
Fix for older compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
fedetft committed May 13, 2024
1 parent 66fdd9a commit 675bed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Projects/Sources/importer.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ T tryImportSymbol(const char *funcName)
template<typename T>
T importSymbol(const char *funcName)
{
T result = tryImportSymbol(funcName);
T result = tryImportSymbol<T>(funcName);
if(result) return result;

fprintf(stderr, "Can't get handle to %s in all loaded modules.\n", funcName);
Expand Down

0 comments on commit 675bed5

Please sign in to comment.