summaryrefslogtreecommitdiff
path: root/graphics/asymptote/constructor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/constructor.cc')
-rw-r--r--graphics/asymptote/constructor.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/asymptote/constructor.cc b/graphics/asymptote/constructor.cc
index 87960f1842..68e9b803d5 100644
--- a/graphics/asymptote/constructor.cc
+++ b/graphics/asymptote/constructor.cc
@@ -46,7 +46,7 @@ bool definesImplicitConstructor(coenv &e, record *r, varEntry *v, symbol id)
if (ft->getResult()->kind == ty_void)
return true;
}
-
+
return false;
}
@@ -91,7 +91,7 @@ varEntry *constructorFromInitializer(position pos, coenv &e, record *r,
assert(r);
types::function *ft=new types::function(r, init->getSignature());
-
+
ostringstream out;
ft->printVar(out, symbol::trans("<constructor>"));
@@ -101,7 +101,7 @@ varEntry *constructorFromInitializer(position pos, coenv &e, record *r,
// Translate the function.
fe.e.beginScope();
-
+
transConstructorBody(pos, fe, r, init);
fe.e.endScope();