mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Fix 80-col Violation
Split up the initializer list for Record to avoid 80-col issues. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142507 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a461c39826
commit
0abdadbce7
@ -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
Block a user