You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add forward declarations for classes used in type aliases.
Without these a client could define e.g. a Material class before including
MaterialXCore/Material.h, which would cause the type alias
using MaterialPtr = shared_ptr<class Material>;
to be interpreted as aliasing a ptr to the client's Material, rather than
interpreted as aliasing a forward declaration of MaterialX::Material.
* Remove `class` keyword from type aliases.
0 commit comments