Skip to content

Commit

Permalink
Add missing "throw" before InputExc in IDManifest::init() (#1062)
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <cary@ilm.com>
  • Loading branch information
cary-ilm committed Jun 23, 2021
1 parent a04cbf5 commit b624e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/OpenEXR/ImfIDManifest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ void IDManifest::init(const char* data, const char* endOfData)
Xdr::read<CharPtrIO>( data,version);
if(version!=0)
{
IEX_NAMESPACE::InputExc ("Unrecognized IDmanifest version");
throw IEX_NAMESPACE::InputExc ("Unrecognized IDmanifest version");
}

//
Expand Down

0 comments on commit b624e1c

Please sign in to comment.