File tree Expand file tree Collapse file tree 4 files changed +0
-5
lines changed Expand file tree Collapse file tree 4 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,6 @@ class AnyAttrKind {
95
95
static_assert (DAK_Count < UINT_MAX, " DeclAttrKind is > 31 bits" );
96
96
}
97
97
AnyAttrKind () : kind(TAK_Count), isType(1 ) {}
98
- AnyAttrKind (const AnyAttrKind &) = default ;
99
98
100
99
// / Returns the TypeAttrKind, or TAK_Count if this is not a type attribute.
101
100
TypeAttrKind type () const {
Original file line number Diff line number Diff line change @@ -156,7 +156,6 @@ struct SupplementaryOutputPaths {
156
156
std::string BitstreamOptRecordPath;
157
157
158
158
SupplementaryOutputPaths () = default ;
159
- SupplementaryOutputPaths (const SupplementaryOutputPaths &) = default ;
160
159
161
160
// / Apply a given function for each existing (non-empty string) supplementary output
162
161
void forEachSetOutput (llvm::function_ref<void (const std::string&)> fn) const {
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ class ParserPosition {
31
31
: LS(LS), PreviousLoc(PreviousLoc) {}
32
32
public:
33
33
ParserPosition () = default ;
34
- ParserPosition &operator =(const ParserPosition &) = default ;
35
34
36
35
bool isValid () const { return LS.isValid (); }
37
36
};
Original file line number Diff line number Diff line change @@ -70,8 +70,6 @@ struct LookupState {
70
70
IncludeDerivedRequirements(0 ), IncludeProtocolExtensionMembers(0 ) {}
71
71
72
72
public:
73
- LookupState (const LookupState &) = default;
74
-
75
73
static LookupState makeQualified () {
76
74
LookupState Result;
77
75
Result.IsQualified = 1 ;
You can’t perform that action at this time.
0 commit comments