cycles_render: Fix unused variable build warning with MSVC

This commit is contained in:
Ray molenkamp 2019-05-25 13:05:59 -06:00
parent 5c9cb98698
commit 7d3de604c0
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ bool ColorSpaceManager::colorspace_is_data(ustring colorspace)
OCIO::ConstColorSpaceRcPtr space = config->getColorSpace(colorspace.c_str());
return space && space->isData();
}
catch (OCIO::Exception &exception) {
catch (OCIO::Exception &) {
return false;
}
#else