Search

Improper displaying class name in VS2012 class-view when C++ 11 keyword final is used by Jaeyoun Yi

Closed
as Deferred Help for as Deferred

3
0
Sign in
to vote
Type: Bug
ID: 767001
Opened: 10/11/2012 12:47:29 AM
Access Restriction: Public
1
Workaround(s)
2
User(s) can reproduce this bug
When I put the 'final' keyword at the end of the class name, as shown in the below, the class-view shows 'final' instead of the proper class name.

(Example)
class CMyClass final
{
...
};

When I removed the keyword 'final', then it shows the class name well.
Details (expand)

Visual Studio/Team Foundation Server/.NET Framework Tooling Version

Visual Studio 2012

What category (if any) best represents this feedback?

 

Steps to reproduce

Insert the keyword 'final' to the end of the class name.
Then the class view changes the displaying name to 'final' a few seconds later.

Product Language

Korean

Operating System

Windows 7 SP1

Operating System Language

Korean

Actual results

Insert the keyword 'final' to the end of the class name.
Then the class view changes the displaying name to 'final' a few seconds later.

Expected results

The class view must shows the class name properly, irregardless of using the 'final' keyword.

Locale

 
File Attachments
0 attachments
Sign in to post a comment.
Posted by Microsoft on 10/11/2012 at 3:33 AM
Thanks for your feedback.

We are rerouting this issue to the appropriate group within the Visual Studio Product Team for triage and resolution. These specialized experts will follow-up with your issue.
Posted by Microsoft on 10/11/2012 at 12:50 AM
Thank you for your feedback, we are currently reviewing the issue you have submitted. If this issue is urgent, please contact support directly(http://support.microsoft.com)
Sign in to post a workaround.
Posted by Viorel_ on 10/11/2012 at 11:24 PM
Try ‘sealed’ instead of ‘final’.