This commit is contained in:
aozhiwei 2023-03-03 19:08:26 +08:00
parent 1037f6b4a7
commit ff2878a50a

View File

@ -200,7 +200,7 @@ namespace a8
break;
case ValueType::kList:
{
List&& list = std::any_cast<List>(x->value);
List list = std::any_cast<List>(x->value);
auto leader = list->at(0);
if (leader->type == ValueType::kCProc) {
CProc&& cproc = std::any_cast<CProc>(leader->value);