diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-06 20:57:31 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-06 21:21:18 +0200 |
| commit | 2ce0bdf5de547d5084a764cd5b91180695c644d3 (patch) | |
| tree | e4f1210fbf9279288e7786a5deb90f023b147d28 /src/JP2K_Codestream_Parser.cpp | |
| parent | 547720ba3ee6c4ca788735deb476e85818794eb0 (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; } } |
