Possible Duplicate:
Reference to a pointer
I’m going through some code, and see Foo*& bar. How is that to be interpreted? Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is a reference to a pointer to
Foo. the usual use-case is when you want a function to change a pointer passed to it as an argument: