X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=include%2Fanna%2Fcore%2Futil%2FEqualTo.hpp;h=2f3f22dda421ca6c27640935b6d3fc01aa9891c7;hp=72180079691e4e462ec18ee964e953c0fbdf12cb;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/include/anna/core/util/EqualTo.hpp b/include/anna/core/util/EqualTo.hpp index 7218007..2f3f22d 100644 --- a/include/anna/core/util/EqualTo.hpp +++ b/include/anna/core/util/EqualTo.hpp @@ -26,8 +26,8 @@ template class EqualTo { public: EqualTo(const K key) : a_key(key) {;} EqualTo(const EqualTo& other) : a_key(other.a_key) {;} - bool operator()(T* t) const throw() { return *t == a_key; } - bool operator()(const T* t) const throw() { return *t == a_key; } + bool operator()(T* t) const { return *t == a_key; } + bool operator()(const T* t) const { return *t == a_key; } private: const K a_key;