diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-12-01 17:18:33 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-12-01 17:18:33 +0200 |
commit | 4badc791d1681336cb77bed9b46ed76f842cd21f (patch) | |
tree | 027a45d12f1b61884bb98e8e6c94f8a1d43a22e4 /container/person.hxx | |
parent | eae9d8a277ab7d20228ac84bde36c75ef1d7b74d (diff) |
Remove unused object id accessor
Diffstat (limited to 'container/person.hxx')
-rw-r--r-- | container/person.hxx | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/container/person.hxx b/container/person.hxx index a36c0e8..f9160b8 100644 --- a/container/person.hxx +++ b/container/person.hxx @@ -16,8 +16,7 @@ class person { public: - person (const std::string& first, - const std::string& last) + person (const std::string& first, const std::string& last) : first_ (first), last_ (last) { } @@ -82,13 +81,6 @@ public: return age_weight_; } -public: - unsigned long - id () const - { - return id_; - } - private: friend class odb::access; |