Core/Utils: build fix

This commit is contained in:
ariel-
2016-11-14 02:36:33 -03:00
parent 3f1d020a2c
commit 20cdf1a830

View File

@@ -329,10 +329,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;