Skip to content
Snippets Groups Projects
Commit 03614799 authored by Adam Radziszewski's avatar Adam Radziszewski
Browse files

tag operator!=

parent a632c1c9
Branches
No related merge requests found
......@@ -143,10 +143,17 @@ public:
bool operator<(const Tag& other) const;
/**
* Tag equality. Non-equality is provided by Boost template magic.
* Tag equality.
*/
bool operator==(const Tag& other) const;
/**
* Tag inequality.
*/
bool operator!=(const Tag& other) const {
return !((*this) == other);
}
/**
* Boost seralization support. Users must include appropriate boost headers.
*/
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment