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-04-06 21:21:18 +0200
commit2ce0bdf5de547d5084a764cd5b91180695c644d3 (patch)
treee4f1210fbf9279288e7786a5deb90f023b147d28 /src/JP2K_Codestream_Parser.cpp
parent547720ba3ee6c4ca788735deb476e85818794eb0 (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;
}
}