Whitespace.
[oota-llvm.git] / include / llvm / Support / PointerLikeTypeTraits.h
index 8370821392146130de2b5bfa1441cda3c35873ba..6b8845836221148393f4144f04f5cb6d3235b22a 100644 (file)
@@ -18,7 +18,7 @@
 #include "llvm/Support/DataTypes.h"
 
 namespace llvm {
-  
+
 /// PointerLikeTypeTraits - This is a traits object that is used to handle
 /// pointer types and things that are just wrappers for pointers as a uniform
 /// entity.
@@ -37,7 +37,7 @@ public:
   static inline T *getFromVoidPointer(void *P) {
     return static_cast<T*>(P);
   }
-  
+
   /// Note, we assume here that malloc returns objects at least 4-byte aligned.
   /// However, this may be wrong, or pointers may be from something other than
   /// malloc.  In this case, you should specialize this template to reduce this.
@@ -46,7 +46,7 @@ public:
   /// this is actually true.
   enum { NumLowBitsAvailable = 2 };
 };
-  
+
 // Provide PointerLikeTypeTraits for const pointers.
 template<typename T>
 class PointerLikeTypeTraits<const T*> {
@@ -75,7 +75,7 @@ public:
   // No bits are available!
   enum { NumLowBitsAvailable = 0 };
 };
-  
+
 } // end namespace llvm
 
 #endif