diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-06 20:57:31 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-07-11 01:28:41 +0200 |
| commit | 343464b6db9d451c82fbdcd1f43da587bd6992af (patch) | |
| tree | 9fb3e306796c4cba6bafb316294bddb7c0e5009e /src/JP2K_Codestream_Parser.cpp | |
| parent | 9aa0ea1db985b0348654dbe974383553be574ce7 (diff) | |
Fix warnings about not all possible values in a switch
being handled.
Diffstat (limited to 'src/JP2K_Codestream_Parser.cpp')
| -rwxr-xr-x | src/JP2K_Codestream_Parser.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/JP2K_Codestream_Parser.cpp b/src/JP2K_Codestream_Parser.cpp index 9d55409..d68b52a 100755 --- a/src/JP2K_Codestream_Parser.cpp +++ b/src/JP2K_Codestream_Parser.cpp @@ -243,6 +243,8 @@ ASDCP::JP2K::ParseMetadataIntoDesc(const FrameBuffer& FB, PictureDescriptor& PDe } } break; + default: + break; } } |
