From 2142e026081dfda256d985c0e64a05f21aa2ff5d Mon Sep 17 00:00:00 2001 From: fallenoak Date: Wed, 28 Dec 2022 17:08:59 -0600 Subject: [PATCH] chore(hash): include parameter names in header --- storm/hash/Hashkey.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/storm/hash/Hashkey.hpp b/storm/hash/Hashkey.hpp index a6f96a5..6fc5419 100644 --- a/storm/hash/Hashkey.hpp +++ b/storm/hash/Hashkey.hpp @@ -7,7 +7,7 @@ class HASHKEY_PTR { void* m_key; // Member functions - bool operator==(const HASHKEY_PTR&); + bool operator==(const HASHKEY_PTR& key); }; class HASHKEY_STR { @@ -17,21 +17,21 @@ class HASHKEY_STR { // Member functions ~HASHKEY_STR(); - HASHKEY_STR& operator=(const char*); - bool operator==(const char*); + HASHKEY_STR& operator=(const char* str); + bool operator==(const char* str); }; class HASHKEY_STRI : public HASHKEY_STR { public: // Member functions - HASHKEY_STRI& operator=(const char*); - bool operator==(const char*); + HASHKEY_STRI& operator=(const char* str); + bool operator==(const char* str); }; class HASHKEY_NONE { public: // Member functions - bool operator==(const HASHKEY_NONE&); + bool operator==(const HASHKEY_NONE& key); }; #endif