Core/Utils: build fix

This commit is contained in:
ariel-
2016-11-14 02:36:33 -03:00
committed by roc13x
parent 07a529726d
commit 18a145e2c6

View File

@@ -328,10 +328,10 @@ TC_COMMON_API bool StringToBool(std::string const& str);
template <typename T>
class HookList final
{
typedef std::vector<T> ContainerType;
private:
typename ContainerType _container;
typedef std::vector<T> ContainerType;
ContainerType _container;
public:
typedef typename ContainerType::iterator iterator;