1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-26 03:52:01 +02:00

CSerializer: fix debug assertion

Fix compilation in debug mode
This commit is contained in:
Konstantin P 2023-04-19 13:00:51 +03:00
parent ff5e98e78b
commit 7c4badc890

View File

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