diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-02 07:56:08 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-24 18:03:29 (GMT) |
commit | af9fc277536f37980ccdab699a934b3c42e9fba9 (patch) | |
tree | 1d7adaa7fe72dade98c4d77a8650b40d899cbef1 /Source/cmState.cxx | |
parent | 9b44018d520cfabc347d6d79cafdf0a37c62b4e0 (diff) | |
download | CMake-af9fc277536f37980ccdab699a934b3c42e9fba9.zip CMake-af9fc277536f37980ccdab699a934b3c42e9fba9.tar.gz CMake-af9fc277536f37980ccdab699a934b3c42e9fba9.tar.bz2 |
cmState: Make Snapshot EqualityComparable.
Diffstat (limited to 'Source/cmState.cxx')
-rw-r--r-- | Source/cmState.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmState.cxx b/Source/cmState.cxx index 53fdae0..4e4c2c6 100644 --- a/Source/cmState.cxx +++ b/Source/cmState.cxx @@ -1701,3 +1701,13 @@ std::vector<std::string> cmState::Directory::GetPropertyKeys() const } return keys; } + +bool operator==(const cmState::Snapshot& lhs, const cmState::Snapshot& rhs) +{ + return lhs.Position == rhs.Position; +} + +bool operator!=(const cmState::Snapshot& lhs, const cmState::Snapshot& rhs) +{ + return lhs.Position != rhs.Position; +} |