-
-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #237 from andreasfertig/fixIssue236
Fixed #236: Add missing virtual specifier for virtual inheritance.
- Loading branch information
Showing
3 changed files
with
23 additions
and
1 deletion.
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,2 @@ | ||
struct S {}; | ||
class T : virtual S {}; |
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,17 @@ | ||
struct S | ||
{ | ||
// inline constexpr S & operator=(const S &) = default; | ||
// inline constexpr S & operator=(S &&) = default; | ||
// inline ~S() = default; | ||
}; | ||
|
||
|
||
class T : private virtual S | ||
{ | ||
public: | ||
// inline T & operator=(const T &) = default; | ||
// inline T & operator=(T &&) = default; | ||
// inline ~T() = default; | ||
}; | ||
|
||
|