Remove tabs.
authorReid Spencer <rspencer@reidspencer.com>
Sun, 11 Jul 2004 17:22:51 +0000 (17:22 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 11 Jul 2004 17:22:51 +0000 (17:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14763 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Writer/WriterPrimitives.h

index 02c225baf1bca741392a2bbab32b49d0cf9c4b66..c62d6cc281af642960634922781e6df57c75e836 100644 (file)
@@ -120,7 +120,7 @@ static inline void output_data(const void *Ptr, const void *End,
 }
 
 static inline void output_float(float& FloatVal, 
-                               std::deque<unsigned char>& Out) {
+                                std::deque<unsigned char>& Out) {
   /// FIXME: This is a broken implementation! It writes
   /// it in a platform-specific endianess. Need to make
   /// it little endian always.
@@ -128,7 +128,7 @@ static inline void output_float(float& FloatVal,
 }
 
 static inline void output_double(double& DoubleVal, 
-                               std::deque<unsigned char>& Out) {
+                                std::deque<unsigned char>& Out) {
   /// FIXME: This is a broken implementation! It writes
   /// it in a platform-specific endianess. Need to make
   /// it little endian always.