Commit 4ef45a45 authored by gsamain's avatar gsamain

Avoid looking up entry for acthon activable class, use builtin type

parent 2e350100
......@@ -1546,8 +1546,8 @@ class CppClassNode(CStructOrUnionDefNode, BlockNode):
for base_type in base_types_list:
activable_base = activable_base or base_type.activable
if not activable_base:
activable_base_entry = env.lookup("ActhonActivableClass")
base_types_list.append(activable_base_entry.type)
from . import Builtin
base_types_list.append(Builtin.acthon_activable_type)
cyobject_base = False
for base_type in base_types_list:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment