diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-04 13:47:49 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-04 16:31:03 (GMT) |
commit | a469bf7b98bb2fc82de874383b0538e2d32ab2e1 (patch) | |
tree | 1188817536b42ea3e9c01ed88ace1cb5abaa8cac | |
parent | 257c16495ae0653d8f3630c8d76e6496bc9edd86 (diff) | |
download | CMake-a469bf7b98bb2fc82de874383b0538e2d32ab2e1.zip CMake-a469bf7b98bb2fc82de874383b0538e2d32ab2e1.tar.gz CMake-a469bf7b98bb2fc82de874383b0538e2d32ab2e1.tar.bz2 |
cmMakefile: Remove one wrong and one insufficiently helpful comment.
-rw-r--r-- | Source/cmMakefile.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index e18a4a7..7c2085a 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -981,9 +981,8 @@ protected: // directories. std::set<std::string> SystemIncludeDirectories; - std::vector<std::string> ListFiles; // list of command files loaded - std::vector<std::string> OutputFiles; // list of command files loaded - + std::vector<std::string> ListFiles; + std::vector<std::string> OutputFiles; cmTarget::LinkLibraryVectorType LinkLibraries; |