summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/findsym.pl
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/findsym.pl')
-rwxr-xr-xBuild/source/utils/asymptote/findsym.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/utils/asymptote/findsym.pl b/Build/source/utils/asymptote/findsym.pl
index 38c3865a7af..59e3ce79a2d 100755
--- a/Build/source/utils/asymptote/findsym.pl
+++ b/Build/source/utils/asymptote/findsym.pl
@@ -26,11 +26,11 @@ print header <<END;
// purpose of referring to an external pre-translated symbol, such that
// SYM(name) also refers to that symbol.
#ifndef ADDSYMBOL
- #define ADDSYMBOL(name) extern symbol *PRETRANSLATED_SYMBOL_##name
+ #define ADDSYMBOL(name) extern sym::symbol PRETRANSLATED_SYMBOL_##name
#ifdef PRESYM
#define SYM(name) PRETRANSLATED_SYMBOL_##name
#else
- #define SYM(name) symbol::trans(#name)
+ #define SYM(name) sym::symbol::trans(#name)
#endif
#endif