summaryrefslogtreecommitdiff
path: root/odb/semantics/relational/name.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/semantics/relational/name.hxx')
-rw-r--r--odb/semantics/relational/name.hxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/odb/semantics/relational/name.hxx b/odb/semantics/relational/name.hxx
index 18c7509..06794be 100644
--- a/odb/semantics/relational/name.hxx
+++ b/odb/semantics/relational/name.hxx
@@ -125,6 +125,18 @@ namespace semantics
public:
friend bool
+ operator== (qname const& x, qname const& y)
+ {
+ return x.components_ == y.components_;
+ }
+
+ friend bool
+ operator!= (qname const& x, qname const& y)
+ {
+ return x.components_ != y.components_;
+ }
+
+ friend bool
operator< (qname const& x, qname const& y)
{
return x.components_ < y.components_;