summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-07-18 09:49:11 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-07-18 09:49:11 (GMT)
commit8f5b402aa21af08d6df3d697cc6f744797eee660 (patch)
tree16e918633f342002a3e1bcf3547be855edca4393
parent5fb58b8686d17efdda36d3b50bb099c86b771af3 (diff)
downloadCMake-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.cxx2
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)