mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 13:06:59 -04:00
Use std::enable_shared_from_this instead of thisP parameters.
This commit is contained in:
@@ -362,7 +362,7 @@ void Context::closeScope(size_t scope) {
|
||||
void instrUnary(UnaryInstructionType i, ScriptValueP& a) {
|
||||
switch (i) {
|
||||
case I_ITERATOR_C:
|
||||
a = a->makeIterator(a);
|
||||
a = a->makeIterator();
|
||||
break;
|
||||
case I_NEGATE: {
|
||||
ScriptType at = a->type();
|
||||
|
||||
Reference in New Issue
Block a user