diff --git a/include/ircd/hash.h b/include/ircd/hash.h index 2fedcb91c..683c70270 100644 --- a/include/ircd/hash.h +++ b/include/ircd/hash.h @@ -38,13 +38,6 @@ namespace ircd // which can consume many cycles... template size_t hash(const std::string &str, const size_t i = 0); template size_t hash(const std::u16string &str, const size_t i = 0); - - /// ircd:: reserves the $ character over a string as an alias for hash() - template - constexpr size_t $(string&& s) - { - return hash(std::forward(s)); - } } /// Collision-Resistant Hashing