summaryrefslogtreecommitdiff
path: root/graphics/asymptote/env.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/env.h')
-rw-r--r--graphics/asymptote/env.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/asymptote/env.h b/graphics/asymptote/env.h
index 7fd7a003e5..0f97902620 100644
--- a/graphics/asymptote/env.h
+++ b/graphics/asymptote/env.h
@@ -47,7 +47,7 @@ public:
: ve(tag) {}
protoenv(const protoenv&);
-
+
void beginScope()
{
te.beginScope(); ve.beginScope();
@@ -120,7 +120,7 @@ public:
{
te.enter(name, desc);
}
-
+
void addVar(symbol name, varEntry *desc)
{
// Don't check for multiple variables, as this makes adding casts
@@ -140,7 +140,7 @@ public:
bool add(symbol src, symbol dest,
protoenv &source, varEntry *qualifier, coder &c)
{
- return te.add(src, dest, source.te, qualifier, c) |
+ return te.add(src, dest, source.te, qualifier, c) |
ve.add(src, dest, source.ve, qualifier, c);
}