diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-11 10:43:43 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-12-03 16:44:08 +0100 |
| commit | 62e2948d90dea569aa0ab095f48c4a923454995c (patch) | |
| tree | 0f418982a40986c737ae202459c8424eab232a2f /src/WavFileWriter.h | |
| parent | 786130019b9f9ab6996547cf78d2d47142f542ab (diff) | |
Fix enum switch/case statements with unhandled values.
Diffstat (limited to 'src/WavFileWriter.h')
| -rwxr-xr-x | src/WavFileWriter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/WavFileWriter.h b/src/WavFileWriter.h index 6f507c8..5d326f2 100755 --- a/src/WavFileWriter.h +++ b/src/WavFileWriter.h @@ -133,6 +133,9 @@ class WavFileWriter file_count = m_ADesc.ChannelCount / 2; m_ChannelCount = 2; break; + + default: + break; } assert(file_count && m_ChannelCount); |
