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

Compilation fix for VS2015 suggested by Ivan and tested by @dydzio0614

It's compiled without it by Clang / GCC, but not MSVC++
This commit is contained in:
Arseniy Shestakov 2016-10-29 21:29:25 +03:00
parent 256f43f467
commit e13f98e38e

View File

@ -200,7 +200,7 @@ extern DLL_LINKAGE CTypeList typeList;
/// Wrapper over CTypeList. Allows execution of templated class T for any type
/// that was resgistered for this applier
template<typename T>
class CApplier
class CApplier : boost::noncopyable
{
std::map<ui16, std::unique_ptr<T>> apps;