Fixed whitespace in all files (no tabs)
[senf.git] / Utils / SafeBool.cti
index f223f75..bdf32c2 100644 (file)
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2006 
+// Copyright (C) 2006
 
 // Definition of inline template functions
 
@@ -16,7 +16,7 @@ prefix_ senf::SafeBool<T>::operator bool_type()
     const
 {
     return (static_cast<const T*>(this))->boolean_test()
-       ? &SafeBoolBase::this_type_does_not_support_comparisons : 0;
+        ? &SafeBoolBase::this_type_does_not_support_comparisons : 0;
 }
 
 template <typename T>
@@ -33,7 +33,7 @@ prefix_ senf::SafeBool<T>::~SafeBool()
 template <typename T, typename U>
 prefix_ void senf::operator==(const SafeBool<T>& lhs, const SafeBool<U>& rhs)
 {
-    lhs.this_type_does_not_support_comparisons();     
+    lhs.this_type_does_not_support_comparisons();
 }
 
 template <typename T, typename U>
@@ -48,4 +48,8 @@ prefix_ void senf::operator!=(const SafeBool<T>& lhs, const SafeBool<U>& rhs)
 \f
 // Local Variables:
 // mode: c++
+// fill-column: 100
+// c-file-style: "senf"
+// indent-tabs-mode: nil
+// ispell-local-dictionary: "american"
 // End: