Bug #2133

Updated by Zbigniew Rebacz over 4 years ago

Running CoreTutorial leads to crash. The problem is in following lines of code (Value2.cpp):
<pre>
#if 0
INITBLOCK { // This has to be at file level scope
#endif
Value::Register<Foo>(); // need to register value type integer id to allow serialization // <- CRASH
#if 0
}
#endif
</pre>

This is Assert problem, so the issue is present only in debug mode.

Back