Bug 396133 - Implementing a method for a class definition in a source file doesn't work properly
Summary: Implementing a method for a class definition in a source file doesn't work pr...
Status: NEW
Alias: None
Product: CDT
Classification: Tools
Component: cdt-refactoring (show other bugs)
Version: Next   Edit
Hardware: All All
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact: Jonah Graham CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-12-08 15:16 EST by Marc-André Laperle CLA
Modified: 2020-09-04 15:18 EDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Marc-André Laperle CLA 2012-12-08 15:16:06 EST
8.2.0.20121201

main.cpp:

class Test
{
    void foo();
};

Try to implement method on foo(). Found problems: No implementation file found ... Inserting in header file. Click continue. The refactoring adds this:

inline void foo()
{
}

it should be Test::foo()