From fe2cce63aa26d0916fa7be32c6bf7fa8fb059ee7 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 20 Feb 2009 22:51:36 +0000 Subject: Removed trailing whitespace. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65196 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/Format.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include/llvm/Support/Format.h') diff --git a/include/llvm/Support/Format.h b/include/llvm/Support/Format.h index b08d698358..74358560bc 100644 --- a/include/llvm/Support/Format.h +++ b/include/llvm/Support/Format.h @@ -39,7 +39,7 @@ protected: public: format_object_base(const char *fmt) : Fmt(fmt) {} virtual ~format_object_base() {} - + /// print - Format the object into the specified buffer. On success, this /// returns the length of the formatted string. If the buffer is too small, /// this returns a length to retry with, which will be larger than BufferSize. @@ -57,7 +57,7 @@ public: format_object1(const char *fmt, const T &val) : format_object_base(fmt), Val(val) { } - + /// print - Format the object into the specified buffer. On success, this /// returns the length of the formatted string. If the buffer is too small, /// this returns a length to retry with, which will be larger than BufferSize. @@ -71,7 +71,7 @@ public: return N; } }; - + /// format_object2 - This is a templated helper class used by the format /// function that captures the object to be formated and the format string. When /// actually printed, this synthesizes the string into a temporary buffer @@ -84,7 +84,7 @@ public: format_object2(const char *fmt, const T1 &val1, const T2 &val2) : format_object_base(fmt), Val1(val1), Val2(val2) { } - + /// print - Format the object into the specified buffer. On success, this /// returns the length of the formatted string. If the buffer is too small, /// this returns a length to retry with, which will be larger than BufferSize. @@ -112,7 +112,7 @@ public: format_object3(const char *fmt, const T1 &val1, const T2 &val2,const T3 &val3) : format_object_base(fmt), Val1(val1), Val2(val2), Val3(val3) { } - + /// print - Format the object into the specified buffer. On success, this /// returns the length of the formatted string. If the buffer is too small, /// this returns a length to retry with, which will be larger than BufferSize. @@ -149,7 +149,7 @@ template const T2 &Val2, const T3 &Val3) { return format_object3(Fmt, Val1, Val2, Val3); } - + } // end namespace llvm #endif -- cgit v1.2.3-18-g5258