diff options
author | Peter Kuemmel <syntheticpp@gmx.net> | 2012-06-16 10:58:06 (GMT) |
---|---|---|
committer | Peter Kuemmel <syntheticpp@gmx.net> | 2012-06-16 10:58:06 (GMT) |
commit | 9081e3a1355bf312e54b4a71e879a72e93933ef0 (patch) | |
tree | b6fcf32fbe4c82fbffab88d6c83a93441ae23516 | |
parent | f430bea11b47327f582ca1609c9f0cec0204d628 (diff) | |
download | CMake-9081e3a1355bf312e54b4a71e879a72e93933ef0.zip CMake-9081e3a1355bf312e54b4a71e879a72e93933ef0.tar.gz CMake-9081e3a1355bf312e54b4a71e879a72e93933ef0.tar.bz2 |
remove warning about unused parameter
-rw-r--r-- | Source/cmLocalGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index fe3c8ca..274274a 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -206,7 +206,7 @@ public: // Fill the vector with the target names for the object files, // preprocessed files and assembly files. - virtual void GetIndividualFileTargets(std::vector<std::string>& targets) {} + virtual void GetIndividualFileTargets(std::vector<std::string>&) {} // Create a struct to hold the varibles passed into // ExpandRuleVariables |