template<class Key, class T>
class Cache
{
private:
std::unordered_map <Key, std::list< CacheElement<Key, T> >::iterator > _cacheHash;
}
While compiling, i get the following error message;
1 2 3
Error: template argument fortemplate type parameter must be a type; did you forget 'typename'?
std::unordered_map <Key, std::list< CacheElement<Key, T> >::iterator > _cacheHash;
^