1 --- src/core/CLucene/util/Equators.h
2 +++ src/core/CLucene/util/Equators.h
5 class CLUCENE_INLINE_EXPORT Equals{
7 - class CLUCENE_INLINE_EXPORT Int32:public CL_NS_STD(binary_function)<const int32_t*,const int32_t*,bool>
8 + class CLUCENE_INLINE_EXPORT Int32
11 bool operator()( const int32_t val1, const int32_t val2 ) const;
14 - class CLUCENE_INLINE_EXPORT Char:public CL_NS_STD(binary_function)<const char*,const char*,bool>
15 + class CLUCENE_INLINE_EXPORT Char
18 bool operator()( const char* val1, const char* val2 ) const;
21 - class CLUCENE_INLINE_EXPORT WChar: public CL_NS_STD(binary_function)<const wchar_t*,const wchar_t*,bool>
22 + class CLUCENE_INLINE_EXPORT WChar
25 bool operator()( const wchar_t* val1, const wchar_t* val2 ) const;
29 template<typename _cl>
30 - class CLUCENE_INLINE_EXPORT Void:public CL_NS_STD(binary_function)<const void*,const void*,bool>
31 + class CLUCENE_INLINE_EXPORT Void
34 bool operator()( _cl* val1, _cl* val2 ) const{