diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-07-18 09:49:11 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-07-18 09:49:11 (GMT) |
commit | 8f5b402aa21af08d6df3d697cc6f744797eee660 (patch) | |
tree | 16e918633f342002a3e1bcf3547be855edca4393 | |
parent | 5fb58b8686d17efdda36d3b50bb099c86b771af3 (diff) | |
download | CMake-8f5b402aa21af08d6df3d697cc6f744797eee660.zip CMake-8f5b402aa21af08d6df3d697cc6f744797eee660.tar.gz CMake-8f5b402aa21af08d6df3d697cc6f744797eee660.tar.bz2 |
Remove TODO to uniq COMPILE_OPTIONS
Compile options should not be passed through a uniq filter because
repeated use of an option may have siginificance.
-rw-r--r-- | Source/cmLocalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 4e871d6..b187d6b 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -1380,7 +1380,7 @@ void cmLocalGenerator::AddCompileOptions( // COMPILE_FLAGS are not escaped for historical reasons. this->AppendFlags(flags, targetFlags); } - std::vector<std::string> opts; // TODO: Emitted. + std::vector<std::string> opts; target->GetCompileOptions(opts, config); for(std::vector<std::string>::const_iterator i = opts.begin(); i != opts.end(); ++i) |