summaryrefslogtreecommitdiff
path: root/graphics/asymptote/runmath.in
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/runmath.in')
-rw-r--r--graphics/asymptote/runmath.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/asymptote/runmath.in b/graphics/asymptote/runmath.in
index 4beba44fc3..36ca583744 100644
--- a/graphics/asymptote/runmath.in
+++ b/graphics/asymptote/runmath.in
@@ -28,7 +28,7 @@ using types::realArray;
using types::pairArray;
using run::integeroverflow;
-using vm::frame;
+using vm::vmFrame;
const char *invalidargument="invalid argument";
@@ -364,12 +364,12 @@ bool !(bool b)
return !b;
}
-bool :boolMemEq(frame *a, frame *b)
+bool :boolMemEq(vmFrame *a, vmFrame *b)
{
return a == b;
}
-bool :boolMemNeq(frame *a, frame *b)
+bool :boolMemNeq(vmFrame *a, vmFrame *b)
{
return a != b;
}