Replies: 1 comment
-
The library knows how to handle |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,I have some code like this:
As you can see,two levels pointer used here:
Out. std::vector<In*> ins -> In.Item* child;
These code will give compile error:
If changed
In.Item* child; to In.Item child;
Everything compiles fine,but I do need this "child" to be a pointer,would you please tell me how to solve this problem?
Beta Was this translation helpful? Give feedback.
All reactions