Luke Nuttall
Starting Member
1 Posts |
Posted - Aug 24 2006 : 10:06:08 PM
|
There is a minor issue with the create implementation tool. Using create implementation does not respect the spacing in the method declaration, creating trouble for those following a strict coding standard.
e.g. class CodeMonkey { ... bool performTask(const TaskMaster& aTaskMaster); ... };
becomes
bool CodeMonkey::performTask( const TaskMaster& aTaskMaster ) {
}
instead of : bool CodeMonkey::performTask(const TaskMaster& aTaskMaster) {
}
|
|