Skip to content
Snippets Groups Projects
Commit b560769f authored by Sergey Yakubov's avatar Sergey Yakubov
Browse files

update error classes

parent 6d92416d
No related branches found
No related tags found
No related merge requests found
......@@ -75,11 +75,11 @@ class ErrorTemplateInterface {
};
static inline bool operator==(const Error& lhs, const ErrorTemplateInterface& rhs) {
return rhs.operator == (lhs);
return rhs == lhs;
}
static inline bool operator!=(const Error& lhs, const ErrorTemplateInterface& rhs) {
return rhs.operator != (lhs);
return rhs != lhs;
}
template<typename ServiceErrorType>
......@@ -119,12 +119,12 @@ class ServiceErrorTemplate : public ErrorTemplateInterface {
template<typename ServiceErrorType>
static inline bool operator==(const Error& lhs, const ServiceErrorTemplate<ServiceErrorType>& rhs) {
return rhs.operator == (lhs);
return rhs == lhs;
}
template<typename ServiceErrorType>
static inline bool operator!=(const Error& lhs, const ServiceErrorTemplate<ServiceErrorType>& rhs) {
return rhs.operator != (lhs);
return rhs != lhs;
}
namespace GeneralErrorTemplates {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment