We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8feeace commit 04d62e6Copy full SHA for 04d62e6
1 file changed
Sources/NodeUIEngine/NUIE_HashUtils.hpp
@@ -1,12 +1,14 @@
1
#ifndef NUIE_HASHUTILS_HPP
2
#define NUIE_HASHUTILS_HPP
3
4
+#include <cstddef>
5
+
6
struct EnumHash
7
{
8
template <typename EnumType>
- size_t operator() (EnumType enumVal) const
9
+ std::size_t operator() (EnumType enumVal) const
10
- return static_cast<size_t> (enumVal);
11
+ return static_cast<std::size_t> (enumVal);
12
}
13
};
14
0 commit comments