summaryrefslogtreecommitdiffstats
path: root/Source/cmNewLineStyle.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-04-01 21:53:05 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-04-03 19:53:13 (GMT)
commitff710539ab31ba4b6f3b376621dd9fbd56e1b558 (patch)
treeb48a73a41699fd1f8ef7b3926c7396d2562d49e4 /Source/cmNewLineStyle.cxx
parent5376151aa1d724b6d7ddef8d2e521d97cbfa74ae (diff)
downloadCMake-ff710539ab31ba4b6f3b376621dd9fbd56e1b558.zip
CMake-ff710539ab31ba4b6f3b376621dd9fbd56e1b558.tar.gz
CMake-ff710539ab31ba4b6f3b376621dd9fbd56e1b558.tar.bz2
Remove default labels from fully covered switch statements.
Allow compilers to warn when new enum values are added, making switches no-longer fully-covered.
Diffstat (limited to 'Source/cmNewLineStyle.cxx')
-rw-r--r--Source/cmNewLineStyle.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/cmNewLineStyle.cxx b/Source/cmNewLineStyle.cxx
index a7d7429..08f0b5b 100644
--- a/Source/cmNewLineStyle.cxx
+++ b/Source/cmNewLineStyle.cxx
@@ -76,8 +76,6 @@ const std::string cmNewLineStyle::GetCharacters() const
return "\n";
case CRLF:
return "\r\n";
- default:
- ;
}
return "";
}