diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-18 19:44:14 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-05-18 21:55:43 (GMT) |
commit | e96b5d14f9f3500b2221e9afedfacabb0a56bb4c (patch) | |
tree | 242b3a3c35d604973ae7150aef12b775702928ec /Source/cmListFileCache.h | |
parent | 7eb0dfa0622afe078c2e131ee1cbad293960b634 (diff) | |
download | CMake-e96b5d14f9f3500b2221e9afedfacabb0a56bb4c.zip CMake-e96b5d14f9f3500b2221e9afedfacabb0a56bb4c.tar.gz CMake-e96b5d14f9f3500b2221e9afedfacabb0a56bb4c.tar.bz2 |
cmListFileContext: Implement LessThanComparable.
Move wrapping existing code from cmMakefile, and simplify the
implementation there.
Diffstat (limited to 'Source/cmListFileCache.h')
-rw-r--r-- | Source/cmListFileCache.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmListFileCache.h b/Source/cmListFileCache.h index 544ff1b..da89016 100644 --- a/Source/cmListFileCache.h +++ b/Source/cmListFileCache.h @@ -62,6 +62,7 @@ struct cmListFileContext }; std::ostream& operator<<(std::ostream&, cmListFileContext const&); +bool operator<(const cmListFileContext& lhs, const cmListFileContext& rhs); struct cmListFileFunction: public cmListFileContext { |