We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f8165 commit c6a753bCopy full SHA for c6a753b
lib/base/objecttype.cpp
@@ -30,7 +30,7 @@ static void RegisterObjectType(void)
30
Object::TypeInstance = type;
31
}
32
33
-INITIALIZE_ONCE(&RegisterObjectType);
+INITIALIZE_ONCE_WITH_PRIORITY(&RegisterObjectType, 20);
34
35
ObjectType::ObjectType(void)
36
{ }
lib/base/type.cpp
@@ -32,7 +32,7 @@ static void RegisterTypeType(void)
Type::Register(type);
-INITIALIZE_ONCE(RegisterTypeType);
+INITIALIZE_ONCE_WITH_PRIORITY(RegisterTypeType, 20);
37
String Type::ToString(void) const
38
{
0 commit comments