summaryrefslogtreecommitdiff
path: root/graphics/asymptote/exp.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/exp.h')
-rw-r--r--graphics/asymptote/exp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/asymptote/exp.h b/graphics/asymptote/exp.h
index d1a60e96dd..152df76ded 100644
--- a/graphics/asymptote/exp.h
+++ b/graphics/asymptote/exp.h
@@ -887,13 +887,13 @@ public:
};
class castExp : public exp {
- ty *target;
+ astType *target;
exp *castee;
types::ty *tryCast(coenv &e, types::ty *t, types::ty *s,
symbol csym);
public:
- castExp(position pos, ty *target, exp *castee)
+ castExp(position pos, astType *target, exp *castee)
: exp(pos), target(target), castee(castee) {}
void prettyprint(ostream &out, Int indent) override;