summaryrefslogtreecommitdiffstats
path: root/include/basebmp/accessorfunctors.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/basebmp/accessorfunctors.hxx')
-rw-r--r--include/basebmp/accessorfunctors.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/basebmp/accessorfunctors.hxx b/include/basebmp/accessorfunctors.hxx
index 58550b010512..87edfed17290 100644
--- a/include/basebmp/accessorfunctors.hxx
+++ b/include/basebmp/accessorfunctors.hxx
@@ -29,7 +29,7 @@ namespace basebmp
{
// Some common accessor functors
-// ------------------------------------------------------------
+
/// combine two values via XOR
@@ -38,7 +38,7 @@ template< typename T > struct XorFunctor : public std::binary_function<T,T,T>
T operator()( T v1, T v2 ) const { return v1 ^ v2; }
};
-//-----------------------------------------------------------------------------
+
/// Base class, passing on the arg types
template< typename T, typename M > struct MaskFunctorBase :
@@ -129,7 +129,7 @@ template< typename T, typename M > struct FastIntegerOutputMaskFunctor<T,M,false
}
};
-//-----------------------------------------------------------------------------
+
/** Split a pair value from a JoinImageAccessorAdapter into its
individual values, and pass it on to a ternary functor