peterchen
Tomato Guru
126 Posts |
Posted - Aug 10 2006 : 10:33:40 AM
|
For: class CClass { bool operator==(CClass const & rhs) const { } };
"Move Implementation to Source" results in the following body generated:
// ----- == ------------------------------------------- bool CClass::==(CClass const & rhs) const { }
(notice that operator is gone from comment and impl). Changes to declaration are correct.
1531, VC6 |
|