forked from OSchip/llvm-project
Fix 80-col Violation
Split up the initializer list for Record to avoid 80-col issues. llvm-svn: 142507
This commit is contained in:
parent
077d84e6f3
commit
d3a45f0707
|
@ -1401,7 +1401,9 @@ public:
|
|||
|
||||
// Constructs a record.
|
||||
explicit Record(const std::string &N, SMLoc loc, RecordKeeper &records) :
|
||||
ID(LastID++), Name(StringInit::get(N)), Loc(loc), TrackedRecords(records), TheInit(0) {}
|
||||
ID(LastID++), Name(StringInit::get(N)), Loc(loc), TrackedRecords(records),
|
||||
TheInit(0) {
|
||||
}
|
||||
~Record() {}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue