uint -> unsigned int (for msvc)
authorAlexey Chernobaev <achernobaev@dev.rtsoft.ru>
Thu, 15 Feb 2018 12:53:08 +0000 (15:53 +0300)
committerAlexey Chernobaev <achernobaev@dev.rtsoft.ru>
Thu, 15 Feb 2018 12:53:08 +0000 (15:53 +0300)
src/util/indices.h

index a79a007..9826c5f 100644 (file)
@@ -64,7 +64,7 @@ struct Index
 };
 
 template <typename Base>
-uint qHash(const Index<Base> index, uint seed = 0) noexcept
+unsigned int qHash(const Index<Base> index, unsigned int seed = 0) noexcept
 {
     return qHash(index.index, seed);
 }