summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Format.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2009-02-20 22:51:36 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2009-02-20 22:51:36 +0000
commitfe2cce63aa26d0916fa7be32c6bf7fa8fb059ee7 (patch)
tree0b78d06b18ccfef4e1aad7bbbf9b7f02fb90eb3c /include/llvm/Support/Format.h
parentd5ece81cc7a908c30e6786b70a4a9db1dd129a8a (diff)
downloadllvm-fe2cce63aa26d0916fa7be32c6bf7fa8fb059ee7.tar.gz
llvm-fe2cce63aa26d0916fa7be32c6bf7fa8fb059ee7.tar.bz2
llvm-fe2cce63aa26d0916fa7be32c6bf7fa8fb059ee7.tar.xz
Removed trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65196 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Format.h')
-rw-r--r--include/llvm/Support/Format.h12
1 files changed, 6 insertions, 6 deletions
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 <typename T1, typename T2, typename T3>
const T2 &Val2, const T3 &Val3) {
return format_object3<T1, T2, T3>(Fmt, Val1, Val2, Val3);
}
-
+
} // end namespace llvm
#endif