projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a461c39
)
Fix 80-col Violation
author
David Greene
<greened@obbligato.org>
Wed, 19 Oct 2011 13:03:10 +0000
(13:03 +0000)
committer
David Greene
<greened@obbligato.org>
Wed, 19 Oct 2011 13:03:10 +0000
(13:03 +0000)
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
include/llvm/TableGen/Record.h
patch
|
blob
|
history
diff --git
a/include/llvm/TableGen/Record.h
b/include/llvm/TableGen/Record.h
index 34c8aa977f55d272d8f4218272900812c7380b96..04ca9f3ef3d0fdab574219475f6323f5c3b11291 100644
(file)
--- 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() {}