summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/genv.cc
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/genv.cc')
-rw-r--r--Build/source/utils/asymptote/genv.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/utils/asymptote/genv.cc b/Build/source/utils/asymptote/genv.cc
index df223ef4af7..ba0aea10d2f 100644
--- a/Build/source/utils/asymptote/genv.cc
+++ b/Build/source/utils/asymptote/genv.cc
@@ -57,7 +57,7 @@ genv::genv()
#endif
}
-record *genv::loadModule(symbol *id, string filename) {
+record *genv::loadModule(symbol id, string filename) {
// Get the abstract syntax tree.
absyntax::file *ast = parser::parseFile(filename,"Loading");
@@ -82,7 +82,7 @@ void genv::checkRecursion(string filename) {
}
}
-record *genv::getModule(symbol *id, string filename) {
+record *genv::getModule(symbol id, string filename) {
checkRecursion(filename);
record *r=imap[filename];