diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-04-26 11:29:05 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-04-26 11:29:05 +0200 |
commit | 3506ef645e4cd26aebb73f493001d584e4cce22a (patch) | |
tree | bfc53872849a256861903a21daa55ebf097f0f39 /composite | |
parent | ab994fdada3eebc794d6b1686f55a35420e4d758 (diff) |
Make session optional
Diffstat (limited to 'composite')
-rw-r--r-- | composite/person.hxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/composite/person.hxx b/composite/person.hxx index c80e2d8..f0626e5 100644 --- a/composite/person.hxx +++ b/composite/person.hxx @@ -168,13 +168,6 @@ private: std::string domain_; }; -inline bool -operator< (const email_address& x, const email_address& y) -{ - return x.recipient () < y.recipient () || - (x.recipient () == y.recipient () && x.domain() < y.domain ()); -} - #pragma db object class person { |