Remove trailing spaces
authorEli Bendersky <eli.bendersky@intel.com>
Sun, 22 Jan 2012 09:26:00 +0000 (09:26 +0000)
committerEli Bendersky <eli.bendersky@intel.com>
Sun, 22 Jan 2012 09:26:00 +0000 (09:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148655 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Object/MachOObject.h

index 51be847858a1e23061116acd8358315814fcc9ec..0560402743196a8dc5a3d4ce8efb92597cdf468c 100644 (file)
@@ -177,14 +177,14 @@ public:
   void ReadULEB128s(uint64_t Index, SmallVectorImpl<uint64_t> &Out) const;
 
   /// @}
-  
+
   /// @name Object Dump Facilities
   /// @{
   /// dump - Support for debugging, callable in GDB: V->dump()
   //
   void dump() const;
   void dumpHeader() const;
-  
+
   /// print - Implement operator<< on Value.
   ///
   void print(raw_ostream &O) const;
@@ -192,7 +192,7 @@ public:
 
   /// @}
 };
-  
+
 inline raw_ostream &operator<<(raw_ostream &OS, const MachOObject &V) {
   V.print(OS);
   return OS;