From 6cea3eeb4b785fa4b72d4a26c9b6df09180ae34c Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Thu, 19 Sep 2013 13:00:07 -0400 Subject: [PATCH] cmNewLineStyle: Remove useless semi-colon Warned by clang. --- Source/cmNewLineStyle.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmNewLineStyle.cxx b/Source/cmNewLineStyle.cxx index 6f7b6a949..a7d74297f 100644 --- a/Source/cmNewLineStyle.cxx +++ b/Source/cmNewLineStyle.cxx @@ -78,7 +78,7 @@ const std::string cmNewLineStyle::GetCharacters() const return "\r\n"; default: ; - }; + } return ""; }