From 1c3211e00d90dd47e1a2d7eb91a3b53af9917939 Mon Sep 17 00:00:00 2001 From: belliash Date: Thu, 13 Dec 2018 09:35:48 +0100 Subject: [PATCH] Add missing PH7_OP_CVT_CALL definition. --- include/ph7int.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/ph7int.h b/include/ph7int.h index 55458c7..f291ed8 100644 --- a/include/ph7int.h +++ b/include/ph7int.h @@ -1458,6 +1458,7 @@ enum ph7_vm_op { PH7_OP_CVT_NULL, /* NULL cast */ PH7_OP_CVT_ARRAY, /* Array cast */ PH7_OP_CVT_OBJ, /* Object cast */ + PH7_OP_CVT_CALL, /* Callback cast */ PH7_OP_CVT_VOID, /* Void cast */ PH7_OP_CLASS_INIT, /* Class init */ PH7_OP_INTERFACE_INIT,/* Interface init */