Skip to content

Commit

Permalink
fix clang/gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyMakeev committed Feb 4, 2024
1 parent 36c99a9 commit 26fa430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ExcaliburHash/ExcaliburHash.h
Original file line number Diff line number Diff line change
Expand Up @@ -992,6 +992,6 @@ template <typename TKey, typename TValue, unsigned kNumInlineItems = 1, typename
template <typename TKey, typename TValue> using HashMap = HashTable<TKey, TValue, 1, KeyInfo<TKey>>;

// hashset declaration
template <typename TKey> using HashSet = HashTable<TKey, nullptr_t, 1, KeyInfo<TKey>>;
template <typename TKey> using HashSet = HashTable<TKey, std::nullptr_t, 1, KeyInfo<TKey>>;

} // namespace Excalibur

0 comments on commit 26fa430

Please sign in to comment.