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
Today I was migrating my project to the latest revision of RTTR and came across the following problem. Suppose I have a class that contains a vector of pointers to some object:
structContainer
{
std::vector<int*> data;
};
With the older version of RTTR I was able to register the vector as a readonly property:
Hi,
Today I was migrating my project to the latest revision of RTTR and came across the following problem. Suppose I have a class that contains a vector of pointers to some object:
With the older version of RTTR I was able to register the vector as a readonly property:
However, now compilation fails with this ugly error.
Actually, I have traced down the commit that introduced the problem: 7e651ec, however figuring how to fix it is beyond me :) Any ideas?
The text was updated successfully, but these errors were encountered: