aboutsummaryrefslogtreecommitdiff
path: root/source/Utils.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Utils.hpp')
-rw-r--r--source/Utils.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/Utils.hpp b/source/Utils.hpp
index 63e610f..9f28aad 100644
--- a/source/Utils.hpp
+++ b/source/Utils.hpp
@@ -31,6 +31,8 @@ void HashCombine(std::size_t& seed, const T& v) {
seed ^= std::hash<T>{}(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
}
+std::string MakeRandomNumberedName(const char* tag);
+
} // namespace Utils
struct StringHash {