summaryrefslogtreecommitdiff
path: root/graphics/asymptote/stm.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/stm.h')
-rw-r--r--graphics/asymptote/stm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/asymptote/stm.h b/graphics/asymptote/stm.h
index d0cf203108..3f8d426014 100644
--- a/graphics/asymptote/stm.h
+++ b/graphics/asymptote/stm.h
@@ -64,11 +64,11 @@ public:
}
// A block is guaranteed to return iff its last statement is
- // guaranteed to return.
+ // guaranteed to return.
bool returns() {
return base->returns();
}
-
+
};
// A statement that consist of a single expression to evaluate.
@@ -191,7 +191,7 @@ public:
class returnStm : public stm {
exp *value;
-
+
public:
returnStm(position pos, exp *value = 0)
: stm(pos), value(value) {}
@@ -212,7 +212,7 @@ class stmExpList : public stm {
mem::list<stm *> stms;
public:
- stmExpList(position pos)
+ stmExpList(position pos)
: stm(pos) {}
// To ensure list deallocates properly.