[llvm-commits] [llvm] r142507 -	/llvm/trunk/include/llvm/TableGen/Record.h
    David Greene 
    greened at obbligato.org
       
    Wed Oct 19 06:03:10 PDT 2011
    
    
  
Author: greened
Date: Wed Oct 19 08:03:10 2011
New Revision: 142507
URL: http://llvm.org/viewvc/llvm-project?rev=142507&view=rev
Log:
Fix 80-col Violation
Split up the initializer list for Record to avoid 80-col issues.
Modified:
    llvm/trunk/include/llvm/TableGen/Record.h
Modified: llvm/trunk/include/llvm/TableGen/Record.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/TableGen/Record.h?rev=142507&r1=142506&r2=142507&view=diff
==============================================================================
--- llvm/trunk/include/llvm/TableGen/Record.h (original)
+++ llvm/trunk/include/llvm/TableGen/Record.h Wed Oct 19 08:03:10 2011
@@ -1401,7 +1401,9 @@
 
   // 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() {}
 
 
    
    
More information about the llvm-commits
mailing list