summaryrefslogtreecommitdiff
path: root/graphics/asymptote/stm.h
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-08-07 03:02:55 +0000
committerNorbert Preining <norbert@preining.info>2020-08-07 03:02:55 +0000
commit3710c23789342d9d88783cbe9ad23eb5263a7c33 (patch)
tree1c40b2bfb9f6b652f7877ad0991f5d6b44391154 /graphics/asymptote/stm.h
parentd99fea72e367e8d4d2809b43b3b0206b1bb526b8 (diff)
CTAN sync 202008070302
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.