@@ -609,14 +609,14 @@ SerializableObject::Reader::_decode(_Resolver& resolver)
609609 else if (schema_name_and_version == " V2d.1" )
610610 {
611611 double x, y;
612- return _fetch (" x" , &x) && _fetch (" y" , &y) ? any (Imath ::V2d (x, y))
612+ return _fetch (" x" , &x) && _fetch (" y" , &y) ? any (IMATH_NAMESPACE ::V2d (x, y))
613613 : any ();
614614 }
615615 else if (schema_name_and_version == " Box2d.1" )
616616 {
617- Imath ::V2d min, max;
617+ IMATH_NAMESPACE ::V2d min, max;
618618 return _fetch (" min" , &min) && _fetch (" max" , &max)
619- ? any (Imath ::Box2d (std::move (min), std::move (max)))
619+ ? any (IMATH_NAMESPACE ::Box2d (std::move (min), std::move (max)))
620620 : any ();
621621 }
622622 else
@@ -743,13 +743,13 @@ SerializableObject::Reader::read(std::string const& key, AnyVector* value)
743743}
744744
745745bool
746- SerializableObject::Reader::read (std::string const & key, Imath ::V2d* value)
746+ SerializableObject::Reader::read (std::string const & key, IMATH_NAMESPACE ::V2d* value)
747747{
748748 return _fetch (key, value);
749749}
750750
751751bool
752- SerializableObject::Reader::read (std::string const & key, Imath ::Box2d* value)
752+ SerializableObject::Reader::read (std::string const & key, IMATH_NAMESPACE ::Box2d* value)
753753{
754754 return _fetch (key, value);
755755}
@@ -817,7 +817,7 @@ SerializableObject::Reader::read(
817817bool
818818SerializableObject::Reader::read (
819819 std::string const & key,
820- optional<Imath ::Box2d>* value)
820+ optional<IMATH_NAMESPACE ::Box2d>* value)
821821{
822822 return _read_optional (key, value);
823823}
0 commit comments