1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Fix 80-col Violation

Split up the initializer list for Record to avoid 80-col issues.

llvm-svn: 142507
This commit is contained in:
David Greene 2011-10-19 13:03:10 +00:00
parent 571f509155
commit 2c6b483c06

View File

@ -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() {}