Cleanup: Fix unused variable warning

exception was not used and can be safely removed
This commit is contained in:
Ray Molenkamp 2021-02-18 08:09:08 -07:00
parent f521aa445d
commit 74383a332b

@ -807,7 +807,7 @@ static bool to_scene_linear_transform(OCIO::ConstConfigRcPtr &config,
try {
processor = config->getProcessor(OCIO::ROLE_SCENE_LINEAR, colorspace);
}
catch (OCIO::Exception &exception) {
catch (OCIO::Exception &) {
return false;
}