diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-11-07 12:45:52 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-11-13 18:26:10 (GMT) |
commit | 9f16d428a1146e4f108dd67e743c2c00911c4383 (patch) | |
tree | 9804ebb1564e6ce5017ffd0d0322ef03e28fb0c4 /Source/cmLocalVisualStudio6Generator.cxx | |
parent | bd8bdb6fddcf45bdd558158e9129a5dbeef47a07 (diff) | |
download | CMake-9f16d428a1146e4f108dd67e743c2c00911c4383.zip CMake-9f16d428a1146e4f108dd67e743c2c00911c4383.tar.gz CMake-9f16d428a1146e4f108dd67e743c2c00911c4383.tar.bz2 |
Resolve warnings about used enum values in switch blocks.
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index f15322b..5ac4403 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -710,6 +710,8 @@ void cmLocalVisualStudio6Generator::SetBuildType(BuildType b, switch(b) { + case WIN32_EXECUTABLE: + break; case STATIC_LIBRARY: this->DSPHeaderTemplate = root; this->DSPHeaderTemplate += "/staticLibHeader.dsptemplate"; |