paddinho |
Last Activity: 2006-09-01 17:00
About Me
- About paddinho
- Location
- The North
-
Signature
- Wrong on most accounts. const Foo *foo; and Foo const *foo; mean the same: foo being a pointer to const Foo. const Foo const *foo; would mean the same but is illegal (double const). You are confusing this with Foo * const foo; and const Foo * const foo; respectively. - D Kastrup, comp.os.linux.development.system


