From: Christian Ridderström Date: Sun, 30 Jul 2017 12:23:38 +0000 (+0200) Subject: Add missing 'break' for four default cases in VCBackend.cpp X-Git-Tag: 2.3.0beta1~83 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=95e7abadc0e3c8c250c25b0c5f27575644b94ca7;p=features.git Add missing 'break' for four default cases in VCBackend.cpp Replace four cases of 'default: ;' in VCBackend.cpp with default: break; Justification: Make consistent with the rest of the LyX source code. I found no other occurences of 'default: ;' in the source. --- diff --git a/src/VCBackend.cpp b/src/VCBackend.cpp index a152a28d10..edbf096e75 100644 --- a/src/VCBackend.cpp +++ b/src/VCBackend.cpp @@ -430,7 +430,8 @@ string RCS::revisionInfo(LyXVC::RevisionInfo const info) return rev_date_cache_; case LyXVC::Time: return rev_time_cache_; - default: ; + default: + break; } return string(); @@ -1102,7 +1103,8 @@ string CVS::revisionInfo(LyXVC::RevisionInfo const info) return rev_date_cache_; case LyXVC::Time: return rev_time_cache_; - default: ; + default: + break; } } return string(); @@ -1666,8 +1668,8 @@ string SVN::revisionInfo(LyXVC::RevisionInfo const info) return rev_date_cache_; case LyXVC::Time: return rev_time_cache_; - default: ; - + default: + break; } return string(); @@ -2135,8 +2137,8 @@ string GIT::revisionInfo(LyXVC::RevisionInfo const info) return rev_date_cache_; case LyXVC::Time: return rev_time_cache_; - default: ; - + default: + break; } return string();