diff options
author | Karl Berry <karl@freefriends.org> | 2010-06-14 23:14:16 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-06-14 23:14:16 +0000 |
commit | c2175edc7aa44ca0b526f008d473d6f8a8ac4933 (patch) | |
tree | d6c491676b413ad1922481f8c3fc7b64c3afc0a5 /Build/source/utils/asymptote/runtime.symbols.h | |
parent | 5d08e9ff4fe5fc836d237ea08e82c82b27d558a2 (diff) |
asy 1.98
git-svn-id: svn://tug.org/texlive/trunk@18982 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/runtime.symbols.h')
-rw-r--r-- | Build/source/utils/asymptote/runtime.symbols.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/utils/asymptote/runtime.symbols.h b/Build/source/utils/asymptote/runtime.symbols.h index a6573452e02..dc8c4c347ce 100644 --- a/Build/source/utils/asymptote/runtime.symbols.h +++ b/Build/source/utils/asymptote/runtime.symbols.h @@ -7,11 +7,11 @@ // 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 |