-
Notifications
You must be signed in to change notification settings - Fork 12.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix override keyword being print to the left side
Previously, the `override` keyword in C++ was being print in the left side of a method decl, which is unsupported by C++ standard. This commit fixes that by setting the `CanPrintOnLeft` field to 0, forcing it to be print on the right side of the decl. Signed-off-by: Giuliano Belinassi <gbelinassi@suse.de>
- Loading branch information
1 parent
1deeee3
commit e3c832b
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// This file contain tests to check if override and final are dumped in the | ||
// correct positions. | ||
|
||
// RUN: %clang_cc1 -ast-print -x c++ %s -o - | FileCheck %s | ||
|
||
// CHECK: class A { | ||
class A { | ||
// CHECK-NEXT: virtual void f(); | ||
virtual void f(); | ||
|
||
// CHECK-NEXT: virtual void g() final; | ||
virtual void g() final; | ||
} AA; | ||
|
||
// CHECK: class B : public A { | ||
class B : public A { | ||
// CHECK-NEXT: virtual void f() override { | ||
virtual void f() override { | ||
}; | ||
} B; |