summaryrefslogtreecommitdiff
path: root/src/JP2K_Codestream_Parser.cpp
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-04-06 20:57:31 +0200
committerCarl Hetherington <cth@carlh.net>2020-12-26 21:37:01 +0100
commita6b76fb3c51921fed4554bfa15ce6c593cd86c07 (patch)
treeb8657d8466592209d794347d27191ddc5af2ee65 /src/JP2K_Codestream_Parser.cpp
parentbf79fce3cc5cda56b0faf79953145e54a26631a1 (diff)
Fix warnings about not all possible values in a switch
being handled.
Diffstat (limited to 'src/JP2K_Codestream_Parser.cpp')
-rwxr-xr-xsrc/JP2K_Codestream_Parser.cpp2
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;
}
}