Remove not needed const

This commit is contained in:
Dawid Drozd 2017-12-05 14:34:30 +01:00
parent b41c6254ff
commit b370565b37

View File

@ -207,7 +207,7 @@ private:
std::map<std::size_t, std::unique_ptr<VectorInterface>> _callbacks;
template<typename T>
static const std::size_t getTypeId()
static std::size_t getTypeId()
{
//std::hash<std::string>{}(typeid(T).name() is slower
return typeid(T).hash_code();