diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-03-08 12:37:44 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-03-10 23:17:29 (GMT) |
commit | 4448f175c8d8ee2bfce920a5e7b7e57aa923a19d (patch) | |
tree | f03625dae284a6563d23161a25aef2ba02885943 /Source/cmInstalledFile.cxx | |
parent | 7916d7bac602e71be359e12600b19d823327bdf8 (diff) | |
download | CMake-4448f175c8d8ee2bfce920a5e7b7e57aa923a19d.zip CMake-4448f175c8d8ee2bfce920a5e7b7e57aa923a19d.tar.gz CMake-4448f175c8d8ee2bfce920a5e7b7e57aa923a19d.tar.bz2 |
cmInstalledFile: Move Property implementation out of line.
Don't require re-building the world when changing cmAlgorithms.h.
Diffstat (limited to 'Source/cmInstalledFile.cxx')
-rw-r--r-- | Source/cmInstalledFile.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/cmInstalledFile.cxx b/Source/cmInstalledFile.cxx index 4b53752..8c52b48 100644 --- a/Source/cmInstalledFile.cxx +++ b/Source/cmInstalledFile.cxx @@ -12,6 +12,7 @@ #include "cmInstalledFile.h" #include "cmSystemTools.h" #include "cmMakefile.h" +#include "cmAlgorithms.h" //---------------------------------------------------------------------------- cmInstalledFile::cmInstalledFile(): @@ -29,6 +30,16 @@ cmInstalledFile::~cmInstalledFile() } } +cmInstalledFile::Property::Property() +{ + +} + +cmInstalledFile::Property::~Property() +{ + cmDeleteAll(this->ValueExpressions); +} + //---------------------------------------------------------------------------- void cmInstalledFile::SetName(cmMakefile* mf, const std::string& name) { |