1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

Merge pull request #2036 from rilian-la-te/fix-serializer-assert

CSerializer: fix debug assertion
This commit is contained in:
Ivan Savenko
2023-04-19 13:54:57 +03:00
committed by GitHub

View File

@@ -99,7 +99,7 @@ public:
return nullptr; return nullptr;
else else
{ {
assert(!i->second.empty()); assert(i->second.has_value());
#ifndef __APPLE__ #ifndef __APPLE__
assert(i->second.type() == typeid(VectorizedObjectInfo<T, U>)); assert(i->second.type() == typeid(VectorizedObjectInfo<T, U>));
#endif #endif