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
The function cps_class_attr_is_embedded() is defined to return a bool type. In the "false" case, it returns a nullptr with no cast. This is a build error with certain compiles.
I suggest the following fix.
Change...
if (p==nullptr) return nullptr;
To...
if (p==nullptr) return false;
The text was updated successfully, but these errors were encountered:
The function cps_class_attr_is_embedded() is defined to return a bool type. In the "false" case, it returns a nullptr with no cast. This is a build error with certain compiles.
I suggest the following fix.
Change...
if (p==nullptr) return nullptr;
To...
if (p==nullptr) return false;
The text was updated successfully, but these errors were encountered: