Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
0.37
22 nov 2015 0.37
[Ko van der Sloot]

16 dec 2024 0.36
[Ko van der Sloot]
Expand Down
6 changes: 3 additions & 3 deletions include/ticcutils/UniHash.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion include/ticcutils/enum_flags.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,5 @@ namespace TiCC {
inline ENUMTYPE operator ^ (ENUMTYPE a, ENUMTYPE b) { return ENUMTYPE(((std::underlying_type<ENUMTYPE>::type)a) ^ ((std::underlying_type<ENUMTYPE>::type)b)); } \
inline ENUMTYPE &operator ^= (ENUMTYPE &a, ENUMTYPE b) { return (ENUMTYPE &)(((std::underlying_type<ENUMTYPE>::type &)a) ^= ((std::underlying_type<ENUMTYPE>::type)b)); } \
inline bool operator % ( const ENUMTYPE &a, ENUMTYPE b) { return (a & b) == b; }

} //namespace TICC
#endif