diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-06 20:57:31 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-12-26 21:37:01 +0100 |
| commit | a6b76fb3c51921fed4554bfa15ce6c593cd86c07 (patch) | |
| tree | b8657d8466592209d794347d27191ddc5af2ee65 /src/JP2K_Codestream_Parser.cpp | |
| parent | bf79fce3cc5cda56b0faf79953145e54a26631a1 (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; } } |
