File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -266,8 +266,6 @@ void EnumInfo::merge(EnumInfo &&Other) {
266
266
Scoped = Other.Scoped ;
267
267
if (Members.empty ())
268
268
Members = std::move (Other.Members );
269
- if (Other.HasComments || HasComments)
270
- HasComments = true ;
271
269
SymbolInfo::merge (std::move (Other));
272
270
}
273
271
Original file line number Diff line number Diff line change @@ -445,8 +445,6 @@ struct EnumInfo : public SymbolInfo {
445
445
446
446
// Indicates whether this enum is scoped (e.g. enum class).
447
447
bool Scoped = false ;
448
- // Indicates whether or not enum members have comments attached
449
- bool HasComments = false ;
450
448
451
449
// Set to nonempty to the type when this is an explicitly typed enum. For
452
450
// enum Foo : short { ... };
You can’t perform that action at this time.
0 commit comments