
23 Jan
2014
23 Jan
'14
2:44 p.m.
On Thu, Jan 23, 2014 at 3:35 PM, pfultz2
The `->*` operator is one complete operator. In C++, the operators are decided during lexing before the preprocessor, and they don't change(with the exception of the `>>` operator in C++11). Futhermore, precedence decides the order of operators, not what the operators will become.
Thanks Paul. With your help, and http://en.cppreference.com/w/cpp/language/translation_phases, I now get it. Glad to learn such trickery is safe. Best regards, --DD