diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-09-23 20:55:37 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-09-24 12:15:13 +0100 |
commit | dd691312a3a0e0e18ade5c64a3c4f5115c3fde0f (patch) | |
tree | 489780181fd40255c2534614664c59b9f6a7716c /idlc/inc | |
parent | 3be5deadcb46e09d84d99b2b108b65b06ff356e9 (diff) |
we shouldn't need explicit lt_rtl_OUString, etc things anymore
Change-Id: Ibeec3fcc353e07e61fb2c838b318e0a04081ce2c
Diffstat (limited to 'idlc/inc')
-rw-r--r-- | idlc/inc/idlctypes.hxx | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/idlc/inc/idlctypes.hxx b/idlc/inc/idlctypes.hxx index ec8d0042e485..12c665cc0ef9 100644 --- a/idlc/inc/idlctypes.hxx +++ b/idlc/inc/idlctypes.hxx @@ -30,17 +30,9 @@ #include <sal/types.h> #include <rtl/ustring.hxx> -struct LessString -{ - bool operator()(const OString& str1, const OString& str2) const - { - return (str1 < str2); - } -}; - typedef ::std::list< OString > StringList; typedef ::std::vector< OString > StringVector; -typedef ::std::set< OString, LessString > StringSet; +typedef ::std::set< OString > StringSet; class AstDeclaration; |