bf_intern_opencolorio: Fix unused variable build warning with MSVC.

This commit is contained in:
Ray Molenkamp 2019-05-25 13:04:24 -06:00
parent 24024f09c7
commit 5c9cb98698

@ -551,7 +551,7 @@ void OCIOImpl::colorSpaceIsBuiltin(OCIO_ConstConfigRcPtr *config_,
try {
processor = (*config)->getProcessor((*cs)->getName(), "scene_linear");
}
catch (Exception &exception) {
catch (Exception &) {
/* Silently ignore if no conversion possible, then it's not scene linear or sRGB. */
is_scene_linear = false;
is_srgb = false;