diff --git a/NEWS b/NEWS index 6f00733..74cfbdd 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,5 @@ -0.37 +22 nov 2015 0.37 +[Ko van der Sloot] 16 dec 2024 0.36 [Ko van der Sloot] diff --git a/include/ticcutils/UniHash.h b/include/ticcutils/UniHash.h index 445c431..a2f95c3 100644 --- a/include/ticcutils/UniHash.h +++ b/include/ticcutils/UniHash.h @@ -63,9 +63,9 @@ namespace Hash { // Custom hasher for icu::UnicodeString struct UnicodeStringHash { - std::size_t operator()(const icu::UnicodeString& k) const { - return k.hashCode(); - } + std::size_t operator()(const icu::UnicodeString& k) const { + return k.hashCode(); + } }; /// \brief The UnicodeHash class is used to enumerate Unicode strings. diff --git a/include/ticcutils/enum_flags.h b/include/ticcutils/enum_flags.h index abf7e6d..73c2a21 100644 --- a/include/ticcutils/enum_flags.h +++ b/include/ticcutils/enum_flags.h @@ -40,6 +40,5 @@ namespace TiCC { inline ENUMTYPE operator ^ (ENUMTYPE a, ENUMTYPE b) { return ENUMTYPE(((std::underlying_type::type)a) ^ ((std::underlying_type::type)b)); } \ inline ENUMTYPE &operator ^= (ENUMTYPE &a, ENUMTYPE b) { return (ENUMTYPE &)(((std::underlying_type::type &)a) ^= ((std::underlying_type::type)b)); } \ inline bool operator % ( const ENUMTYPE &a, ENUMTYPE b) { return (a & b) == b; } - } //namespace TICC #endif