diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-12-04 12:35:39 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-12-04 12:43:30 (GMT) |
commit | 259bf0918cfbfbbeaf9078001c0b1010066666a1 (patch) | |
tree | 4c97d89a9dc9b1d132a6c99dfc56aa5b0d4d193f /Source/cmGeneratorTarget.h | |
parent | 8cc3cdb6142093ecb9c5aa8c1866ed47a903ea79 (diff) | |
download | CMake-259bf0918cfbfbbeaf9078001c0b1010066666a1.zip CMake-259bf0918cfbfbbeaf9078001c0b1010066666a1.tar.gz CMake-259bf0918cfbfbbeaf9078001c0b1010066666a1.tar.bz2 |
Make the cmStrictTargetComparison operate on const cmTarget*.
Diffstat (limited to 'Source/cmGeneratorTarget.h')
-rw-r--r-- | Source/cmGeneratorTarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.h b/Source/cmGeneratorTarget.h index d2b65b2..6aff5f0 100644 --- a/Source/cmGeneratorTarget.h +++ b/Source/cmGeneratorTarget.h @@ -101,7 +101,7 @@ private: }; struct cmStrictTargetComparison { - bool operator()(cmTarget *t1, cmTarget *t2) const; + bool operator()(cmTarget const* t1, cmTarget const* t2) const; }; typedef std::map<cmTarget*, |