]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/tr1/4_metaprogramming/is_base_of/value.cc
Remove trailing whitespace from libstdc++-v3 files
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 4_metaprogramming / is_base_of / value.cc
index 1fa5b67dd092450d4715df0f92ef3e4158b3614d..5c9dccd290400a3d2d7e291bf98eb1b2a6ee2f80 100644 (file)
@@ -37,7 +37,7 @@ class DerivedHiddenCons
 };
 
 class MultiDerivedHiddenCons
-: private HiddenCons, private __gnu_test::ClassType 
+: private HiddenCons, private __gnu_test::ClassType
 {
   MultiDerivedHiddenCons();
   MultiDerivedHiddenCons(const MultiDerivedHiddenCons&);
@@ -58,7 +58,7 @@ void test01()
   VERIFY( (test_relationship<is_base_of, ClassType, DerivedType>(true)) );
   VERIFY( (test_relationship<is_base_of, ClassType, const DerivedType>(true)) );
   VERIFY( (test_relationship<is_base_of, volatile ClassType,
-          volatile DerivedType>(true)) );  
+          volatile DerivedType>(true)) );
   VERIFY( (test_relationship<is_base_of, PolymorphicClass,
           DerivedPolymorphic>(true)) );
   VERIFY( (test_relationship<is_base_of, HiddenCons,
@@ -74,7 +74,7 @@ void test01()
           UnionType>(false)) );
   VERIFY( (test_relationship<is_base_of, int&, ClassType>(false)) );
   VERIFY( (test_relationship<is_base_of, AbstractClass, ClassType>(false)) );
-  VERIFY( (test_relationship<is_base_of, ClassType, AbstractClass>(false)) );  
+  VERIFY( (test_relationship<is_base_of, ClassType, AbstractClass>(false)) );
   VERIFY( (test_relationship<is_base_of, DerivedType, ClassType>(false)) );
   VERIFY( (test_relationship<is_base_of, DerivedPolymorphic,
           PolymorphicClass>(false)) );