diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-08 20:03:07 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-08 20:18:42 (GMT) |
commit | fe603c7dfb8a3d0dfc892b46f9df0b4c32a892f9 (patch) | |
tree | 7e252193e64fe12b3fe4e11c881cbbdb55f02d91 /Source/cmGetDirectoryPropertyCommand.cxx | |
parent | 8fc53c3ce89e76a4e5cf1968307c513041e9a7b7 (diff) | |
download | CMake-fe603c7dfb8a3d0dfc892b46f9df0b4c32a892f9.zip CMake-fe603c7dfb8a3d0dfc892b46f9df0b4c32a892f9.tar.gz CMake-fe603c7dfb8a3d0dfc892b46f9df0b4c32a892f9.tar.bz2 |
cmGetDirectoryPropertyCommand: Move variable to the point of use.
Diffstat (limited to 'Source/cmGetDirectoryPropertyCommand.cxx')
-rw-r--r-- | Source/cmGetDirectoryPropertyCommand.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGetDirectoryPropertyCommand.cxx b/Source/cmGetDirectoryPropertyCommand.cxx index bb1801c..f60eba7 100644 --- a/Source/cmGetDirectoryPropertyCommand.cxx +++ b/Source/cmGetDirectoryPropertyCommand.cxx @@ -26,7 +26,6 @@ bool cmGetDirectoryPropertyCommand std::vector<std::string>::const_iterator i = args.begin(); std::string variable = *i; ++i; - std::string output = ""; // get the directory argument if there is one cmMakefile *dir = this->Makefile; @@ -79,7 +78,7 @@ bool cmGetDirectoryPropertyCommand "providing the name of the variable to get."); return false; } - output = dir->GetSafeDefinition(*i); + std::string output = dir->GetSafeDefinition(*i); this->Makefile->AddDefinition(variable, output.c_str()); return true; } |