mirror of https://github.com/Icinga/icinga2.git
parent
3e08f2e0b5
commit
05e55ab79d
|
@ -54,7 +54,7 @@ private:
|
||||||
t->SetPrototype(prototype); \
|
t->SetPrototype(prototype); \
|
||||||
icinga::Type::Register(t); \
|
icinga::Type::Register(t); \
|
||||||
} \
|
} \
|
||||||
INITIALIZE_ONCE(RegisterBuiltinType); \
|
INITIALIZE_ONCE_WITH_PRIORITY(RegisterBuiltinType, 15); \
|
||||||
} } }
|
} } }
|
||||||
|
|
||||||
#define REGISTER_PRIMITIVE_TYPE(type, prototype) \
|
#define REGISTER_PRIMITIVE_TYPE(type, prototype) \
|
||||||
|
@ -66,7 +66,7 @@ private:
|
||||||
icinga::Type::Register(t); \
|
icinga::Type::Register(t); \
|
||||||
type::TypeInstance = t; \
|
type::TypeInstance = t; \
|
||||||
} \
|
} \
|
||||||
INITIALIZE_ONCE(RegisterPrimitiveType); \
|
INITIALIZE_ONCE_WITH_PRIORITY(RegisterPrimitiveType, 15); \
|
||||||
} } } \
|
} } } \
|
||||||
DEFINE_TYPE_INSTANCE(type)
|
DEFINE_TYPE_INSTANCE(type)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue