Kaydet (Commit) b2069e24 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

XorFunctor is unused now

since ff6647fc "xor_accessor is unused now"

Change-Id: If7a22831415631bfb08b41298ee4ab3788e34e5c
üst ff6647fc
...@@ -28,18 +28,6 @@ ...@@ -28,18 +28,6 @@
namespace basebmp 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 /// Base class, passing on the arg types
template< typename T, typename M > struct MaskFunctorBase : template< typename T, typename M > struct MaskFunctorBase :
public TernaryFunctorBase<T,M,T,T> {}; public TernaryFunctorBase<T,M,T,T> {};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment