diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2009-02-20 23:04:06 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2009-02-20 23:04:06 +0000 |
commit | d3ff4a188e823baa141c288d31eb532ddf632b6e (patch) | |
tree | f26f1833fbb975a90519018ea1f51c61a4d9dd56 /include/llvm/Bitcode/Serialization.h | |
parent | 085a9ebbc705c6e7d3fd8c692ef1c46fdfb885ce (diff) |
Removed trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65199 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bitcode/Serialization.h')
-rw-r--r-- | include/llvm/Bitcode/Serialization.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Bitcode/Serialization.h b/include/llvm/Bitcode/Serialization.h index 6b64f5ecb5..2f0d35034c 100644 --- a/include/llvm/Bitcode/Serialization.h +++ b/include/llvm/Bitcode/Serialization.h @@ -18,7 +18,7 @@ #include "llvm/Bitcode/SerializationFwd.h" namespace llvm { - + /// SerializeTrait - SerializeTrait bridges between the Serializer/Deserializer /// and the functions that serialize objects of specific types. The default /// behavior is to call static methods of the class for the object being @@ -38,7 +38,7 @@ struct SerializeTrait { static inline void Emit(Serializer& S, const T& X) { X.Emit(S); } static inline void Read(Deserializer& D, T& X) { X.Read(D); } static inline T* Create(Deserializer& D) { return T::Create(D); } - + template <typename Arg1> static inline T* Create(Deserializer& D, Arg1& arg1) { return T::Create(D, arg1); @@ -55,14 +55,14 @@ SERIALIZE_INT_TRAIT(unsigned char) SERIALIZE_INT_TRAIT(unsigned short) SERIALIZE_INT_TRAIT(unsigned int) SERIALIZE_INT_TRAIT(unsigned long) - + SERIALIZE_INT_TRAIT(signed char) SERIALIZE_INT_TRAIT(signed short) SERIALIZE_INT_TRAIT(signed int) SERIALIZE_INT_TRAIT(signed long) #undef SERIALIZE_INT_TRAIT - + } // end namespace llvm #endif |