[llvm-commits] [llvm] r134409 - /llvm/trunk/include/llvm/Object/ObjectFile.h

Michael J. Spencer bigcheesegs at gmail.com
Tue Jul 5 07:49:08 PDT 2011


Author: mspencer
Date: Tue Jul  5 09:49:08 2011
New Revision: 134409

URL: http://llvm.org/viewvc/llvm-project?rev=134409&view=rev
Log:
Fix 80-col.

Modified:
    llvm/trunk/include/llvm/Object/ObjectFile.h

Modified: llvm/trunk/include/llvm/Object/ObjectFile.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Object/ObjectFile.h?rev=134409&r1=134408&r2=134409&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Object/ObjectFile.h (original)
+++ llvm/trunk/include/llvm/Object/ObjectFile.h Tue Jul  5 09:49:08 2011
@@ -44,7 +44,10 @@
   const ObjectFile *OwningObject;
 
 public:
-  RelocationRef() : OwningObject(NULL) { std::memset(&RelocationPimpl, 0, sizeof(RelocationPimpl)); }
+  RelocationRef() : OwningObject(NULL) {
+    std::memset(&RelocationPimpl, 0, sizeof(RelocationPimpl));
+  }
+
   RelocationRef(DataRefImpl RelocationP, const ObjectFile *Owner);
 
   bool operator==(const RelocationRef &Other) const;
@@ -59,7 +62,10 @@
   const ObjectFile *OwningObject;
 
 public:
-  SymbolRef() : OwningObject(NULL) { std::memset(&SymbolPimpl, 0, sizeof(SymbolPimpl)); }
+  SymbolRef() : OwningObject(NULL) {
+    std::memset(&SymbolPimpl, 0, sizeof(SymbolPimpl));
+  }
+
   SymbolRef(DataRefImpl SymbolP, const ObjectFile *Owner);
 
   bool operator==(const SymbolRef &Other) const;
@@ -86,7 +92,10 @@
   const ObjectFile *OwningObject;
 
 public:
-  SectionRef() : OwningObject(NULL) { std::memset(&SectionPimpl, 0, sizeof(SectionPimpl)); }
+  SectionRef() : OwningObject(NULL) {
+    std::memset(&SectionPimpl, 0, sizeof(SectionPimpl));
+  }
+
   SectionRef(DataRefImpl SectionP, const ObjectFile *Owner);
 
   bool operator==(const SectionRef &Other) const;





More information about the llvm-commits mailing list