diff options
Diffstat (limited to 'src/user.cpp')
-rw-r--r-- | src/user.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/user.cpp b/src/user.cpp index 9352938..0fa1e39 100644 --- a/src/user.cpp +++ b/src/user.cpp | |||
@@ -42,5 +42,10 @@ namespace twitter { | |||
42 | { | 42 | { |
43 | return _id == other._id; | 43 | return _id == other._id; |
44 | } | 44 | } |
45 | |||
46 | bool user::operator!=(const user& other) const | ||
47 | { | ||
48 | return _id != other._id; | ||
49 | } | ||
45 | 50 | ||
46 | }; | 51 | }; |