diff options
author | KWSys Upstream <kwrobot@kitware.com> | 2017-12-01 12:54:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-12-01 13:52:29 (GMT) |
commit | 740ccb1f1de5d7d764bf98bd3c322e5c6b07f70b (patch) | |
tree | b2d57be208e109fad0cd99afc86fc9a63acd43a2 | |
parent | 5fa414594eb4c1ca9e7041eb443d503ff495d90d (diff) | |
download | CMake-740ccb1f1de5d7d764bf98bd3c322e5c6b07f70b.zip CMake-740ccb1f1de5d7d764bf98bd3c322e5c6b07f70b.tar.gz CMake-740ccb1f1de5d7d764bf98bd3c322e5c6b07f70b.tar.bz2 |
KWSys 2017-12-01 (0f0023b1)
Code extracted from:
https://gitlab.kitware.com/utils/kwsys.git
at commit 0f0023b1be404cb4a4f893c116c2f8b5190bd743 (master).
Upstream Shortlog
-----------------
Brad King (1):
7b6fa277 ConsoleBuf: Add explicit switch case fallthrough markup
-rw-r--r-- | ConsoleBuf.hxx.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ConsoleBuf.hxx.in b/ConsoleBuf.hxx.in index 46d65a8..cf68146 100644 --- a/ConsoleBuf.hxx.in +++ b/ConsoleBuf.hxx.in @@ -264,6 +264,7 @@ private: if (m_isConsoleInput) { break; } + @KWSYS_NAMESPACE@_FALLTHROUGH; case FILE_TYPE_PIPE: m_activeInputCodepage = input_pipe_codepage; break; @@ -290,6 +291,7 @@ private: if (m_isConsoleOutput) { break; } + @KWSYS_NAMESPACE@_FALLTHROUGH; case FILE_TYPE_PIPE: m_activeOutputCodepage = output_pipe_codepage; break; |