7 Oct
2006
7 Oct
'06
2:06 p.m.
"Andrew Talbot" <Andrew.Talbot(a)talbotville.com> wrote:
Given (for a type T) that const T * and T const * are equivalent, and given the right-to-left nature of pointer declarations, am I not right in thinking that const LPLVCOLUMN pcol is really equivalent to:
LVCOLUMN * const pcol;
not
const LVCOLUMN *pcol;
?
I think yes. A simple test with MSVC compiler and gcc confirms that as well. -- Dmitry.