diff --git a/include/anope.h b/include/anope.h index ee9797627..7ffc90729 100644 --- a/include/anope.h +++ b/include/anope.h @@ -336,9 +336,14 @@ namespace Anope } }; - template class map : public std::map { }; - template class multimap : public std::multimap { }; - template class hash_map : public std::unordered_map { }; + template + using map = std::map; + + template + using multimap = std::multimap; + + template + using hash_map = std::unordered_map; #ifndef REPRODUCIBLE_BUILD static const char *const compiled = __TIME__ " " __DATE__;