summaryrefslogtreecommitdiff
path: root/include/llvm/TableGen
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2011-10-19 13:03:10 +0000
committerDavid Greene <greened@obbligato.org>2011-10-19 13:03:10 +0000
commit0abdadbce7e04af76145154d75ca41dab749b8d6 (patch)
tree89443fc92841e1c7762def94d44847f41b85a0a7 /include/llvm/TableGen
parenta461c398267287d7a5d75fb3fa98d29cbfbb17f4 (diff)
downloadllvm-0abdadbce7e04af76145154d75ca41dab749b8d6.tar.gz
llvm-0abdadbce7e04af76145154d75ca41dab749b8d6.tar.bz2
llvm-0abdadbce7e04af76145154d75ca41dab749b8d6.tar.xz
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
Diffstat (limited to 'include/llvm/TableGen')
-rw-r--r--include/llvm/TableGen/Record.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/TableGen/Record.h b/include/llvm/TableGen/Record.h
index 34c8aa977f..04ca9f3ef3 100644
--- a/include/llvm/TableGen/Record.h
+++ b/include/llvm/TableGen/Record.h
@@ -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() {}