Fix for clang/template dependent name lookup.

Thanks to James & Nicholas...
This commit is contained in:
Thomas Geymayer 2014-05-30 23:57:55 +02:00
parent 0b21181f1a
commit e1abab393b

View File

@ -200,7 +200,7 @@ namespace nasal
if( !_hash || naIsNil(_key) )
return T();
return _hash->get<T>(_key);
return _hash->template get<T>(_key);
}
private: