diff options
author | Brad King <brad.king@kitware.com> | 2015-03-12 19:26:35 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-03-12 19:26:35 (GMT) |
commit | 15b06bc01278bafda15ff1fcece808959422d927 (patch) | |
tree | d31382c169a80c4fae2f0f04d0eebe3e18e42a87 /Source/cmInstalledFile.h | |
parent | 153e2dc3fc73fdb778e56e238441aab2a9f673dc (diff) | |
parent | 95dd238f5cde3aef28f09a2367ac7467d064ea10 (diff) | |
download | CMake-15b06bc01278bafda15ff1fcece808959422d927.zip CMake-15b06bc01278bafda15ff1fcece808959422d927.tar.gz CMake-15b06bc01278bafda15ff1fcece808959422d927.tar.bz2 |
Merge topic 'cmAlgorithms-cleanup'
95dd238f cmRemoveDuplicates: Fix iterator -> const_iterator.
4448f175 cmInstalledFile: Move Property implementation out of line.
7916d7ba Include cmAlgorithms where it is used.
Diffstat (limited to 'Source/cmInstalledFile.h')
-rw-r--r-- | Source/cmInstalledFile.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/Source/cmInstalledFile.h b/Source/cmInstalledFile.h index cdb0866..3af90a7 100644 --- a/Source/cmInstalledFile.h +++ b/Source/cmInstalledFile.h @@ -13,7 +13,6 @@ #define cmInstalledFile_h #include "cmGeneratorExpression.h" -#include "cmAlgorithms.h" /** \class cmInstalledFile * \brief Represents a file intended for installation. @@ -32,15 +31,8 @@ public: struct Property { - Property() - { - - } - - ~Property() - { - cmDeleteAll(this->ValueExpressions); - } + Property(); + ~Property(); ExpressionVectorType ValueExpressions; }; |