summaryrefslogtreecommitdiff
path: root/basebmp
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-01-18 15:30:27 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-01-18 15:30:27 +0100
commitb2069e246359017678bd9355387d51d7f33280d6 (patch)
treef0a152b4f8c77ec103ff1540bb1cd91e385a1bbf /basebmp
parentff6647fc86b2c5753bbd0d10718fd9c54b2aaa43 (diff)
XorFunctor is unused now
since ff6647fc86b2c5753bbd0d10718fd9c54b2aaa43 "xor_accessor is unused now" Change-Id: If7a22831415631bfb08b41298ee4ab3788e34e5c
Diffstat (limited to 'basebmp')
-rw-r--r--basebmp/inc/accessorfunctors.hxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/basebmp/inc/accessorfunctors.hxx b/basebmp/inc/accessorfunctors.hxx
index cae37ba7ad78..2536d502b0fd 100644
--- a/basebmp/inc/accessorfunctors.hxx
+++ b/basebmp/inc/accessorfunctors.hxx
@@ -28,18 +28,6 @@
namespace basebmp
{
-// Some common accessor functors
-
-
-
-/// combine two values via XOR
-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 :
public TernaryFunctorBase<T,M,T,T> {};