summaryrefslogtreecommitdiff
path: root/graphics/asymptote/env.cc
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/env.cc')
-rw-r--r--graphics/asymptote/env.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/asymptote/env.cc b/graphics/asymptote/env.cc
index 09d16f21a0..3b0a59b7a3 100644
--- a/graphics/asymptote/env.cc
+++ b/graphics/asymptote/env.cc
@@ -32,7 +32,7 @@ public:
return e.castable(target, source, name);
}
};
-
+
access *protoenv::baseLookupCast(ty *target, ty *source, symbol name) {
static identAccess id;
@@ -159,10 +159,10 @@ ty *protoenv::castTarget(ty *target, ty *source, symbol name) {
return e.castable(target, source, name) ? target : 0;
}
};
-
+
resolver r(*this, name);
return r.collect(target, source);
-}
+}
ty *protoenv::castSource(ty *target, ty *source, symbol name) {
struct resolver : public collector {
@@ -176,10 +176,10 @@ ty *protoenv::castSource(ty *target, ty *source, symbol name) {
return e.castable(target, source, name) ? source : 0;
}
};
-
+
resolver r(*this, name);
return r.collect(target, source);
-}
+}
void protoenv::addArrayOps(array *a)
{