Neil Santos wrote:
Two, Why does GPC spit out a warning when the arguments are classes (as opposed to pointers to classes)?
TRoot.eph:71: warning: object type declared as value parameter
Object assignments (of which value parameters are a special case) are generally not recommended, because they break polymorphy, object identity, etc. You might want to use reference or `const' parameters instead.
Frank