Use CM_FALLTHROUGH in Windows-specific code

Some cases were missed by earlier sweeps due to not compiling
Windows-specific code.
This commit is contained in:
Brad King
2017-12-04 10:57:30 -05:00
parent e841ae823e
commit 21541bb5cc
2 changed files with 3 additions and 0 deletions
@@ -52,6 +52,7 @@ static std::string cmVS10EscapeComment(std::string comment)
case '>': /* no break */
case '^':
echoable += '^'; /* no break */
CM_FALLTHROUGH;
default:
echoable += *c;
break;