aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/type_traits.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2005-04-21 20:48:15 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2005-04-21 20:48:15 +0000
commit63b3afa98460ce38a1c48d3c44ef6edfdaf37b77 (patch)
treec0f475480b9d884ebcd5fce42a6dac1a4ad1831e /include/llvm/Support/type_traits.h
parent14f342978cbd07436388eb7046bca96ada24cb63 (diff)
downloadexternal_llvm-63b3afa98460ce38a1c48d3c44ef6edfdaf37b77.zip
external_llvm-63b3afa98460ce38a1c48d3c44ef6edfdaf37b77.tar.gz
external_llvm-63b3afa98460ce38a1c48d3c44ef6edfdaf37b77.tar.bz2
Remove trailing whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21411 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/type_traits.h')
-rw-r--r--include/llvm/Support/type_traits.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/llvm/Support/type_traits.h b/include/llvm/Support/type_traits.h
index 36bbdb8..8befb25 100644
--- a/include/llvm/Support/type_traits.h
+++ b/include/llvm/Support/type_traits.h
@@ -1,16 +1,16 @@
//===- llvm/Support/type_traits.h - Simplfied type traits -------*- C++ -*-===//
-//
+//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
-//
+//
//===----------------------------------------------------------------------===//
//
// This file provides a template class that determines if a type is a class or
// not. The basic mechanism, based on using the pointer to member function of
-// a zero argument to a function was "boosted" from the boost type_traits
-// library. See http://www.boost.org/ for all the gory details.
+// a zero argument to a function was "boosted" from the boost type_traits
+// library. See http://www.boost.org/ for all the gory details.
//
//===----------------------------------------------------------------------===//
@@ -27,13 +27,13 @@ namespace llvm {
namespace dont_use
{
// These two functions should never be used. They are helpers to
- // the is_class template below. They cannot be located inside
+ // the is_class template below. They cannot be located inside
// is_class because doing so causes at least GCC to think that
// the value of the "value" enumerator is not constant. Placing
- // them out here (for some strange reason) allows the sizeof
+ // them out here (for some strange reason) allows the sizeof
// operator against them to magically be constant. This is
// important to make the is_class<T>::value idiom zero cost. it
- // evaluates to a constant 1 or 0 depending on whether the
+ // evaluates to a constant 1 or 0 depending on whether the
// parameter T is a class or not (respectively).
template<typename T> char is_class_helper(void(T::*)(void));
template<typename T> double is_class_helper(...);