summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/templates/hash_set.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/godot_cpp/templates/hash_set.hpp')
-rw-r--r--include/godot_cpp/templates/hash_set.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/godot_cpp/templates/hash_set.hpp b/include/godot_cpp/templates/hash_set.hpp
index 884ae4d..1845a1b 100644
--- a/include/godot_cpp/templates/hash_set.hpp
+++ b/include/godot_cpp/templates/hash_set.hpp
@@ -48,9 +48,9 @@ namespace godot {
*
*/
-template <class TKey,
- class Hasher = HashMapHasherDefault,
- class Comparator = HashMapComparatorDefault<TKey>>
+template <typename TKey,
+ typename Hasher = HashMapHasherDefault,
+ typename Comparator = HashMapComparatorDefault<TKey>>
class HashSet {
public:
static constexpr uint32_t MIN_CAPACITY_INDEX = 2; // Use a prime.