Remove trailing spaces

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148655 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eli Bendersky
2012-01-22 09:26:00 +00:00
parent b2798fab4e
commit 381e2bee65

View File

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