summaryrefslogtreecommitdiff
path: root/sc/inc/typedstrdata.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/typedstrdata.hxx')
-rw-r--r--sc/inc/typedstrdata.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/typedstrdata.hxx b/sc/inc/typedstrdata.hxx
index e7c47a47c9e1..8b9cb24f8734 100644
--- a/sc/inc/typedstrdata.hxx
+++ b/sc/inc/typedstrdata.hxx
@@ -36,22 +36,22 @@ public:
StringType GetStringType() const { return meStrType;}
double GetValue() const { return mfValue; }
- struct LessCaseSensitive : std::binary_function<ScTypedStrData, ScTypedStrData, bool>
+ struct LessCaseSensitive
{
bool operator() (const ScTypedStrData& left, const ScTypedStrData& right) const;
};
- struct LessCaseInsensitive : std::binary_function<ScTypedStrData, ScTypedStrData, bool>
+ struct LessCaseInsensitive
{
bool operator() (const ScTypedStrData& left, const ScTypedStrData& right) const;
};
- struct EqualCaseSensitive : std::binary_function<ScTypedStrData, ScTypedStrData, bool>
+ struct EqualCaseSensitive
{
bool operator() (const ScTypedStrData& left, const ScTypedStrData& right) const;
};
- struct EqualCaseInsensitive : std::binary_function<ScTypedStrData, ScTypedStrData, bool>
+ struct EqualCaseInsensitive
{
bool operator() (const ScTypedStrData& left, const ScTypedStrData& right) const;
};