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 /include | |
parent | 3be5deadcb46e09d84d99b2b108b65b06ff356e9 (diff) |
we shouldn't need explicit lt_rtl_OUString, etc things anymore
Change-Id: Ibeec3fcc353e07e61fb2c838b318e0a04081ce2c
Diffstat (limited to 'include')
-rw-r--r-- | include/codemaker/global.hxx | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/include/codemaker/global.hxx b/include/codemaker/global.hxx index 964c84c6c655..d9dc636e4475 100644 --- a/include/codemaker/global.hxx +++ b/include/codemaker/global.hxx @@ -30,17 +30,9 @@ #include <rtl/ustring.hxx> #include <rtl/strbuf.hxx> -struct LessString -{ - bool operator()(const ::rtl::OString& str1, const ::rtl::OString& str2) const - { - return (str1 < str2); - } -}; - typedef ::std::list< ::rtl::OString > StringList; typedef ::std::vector< ::rtl::OString > StringVector; -typedef ::std::set< ::rtl::OString, LessString > StringSet; +typedef ::std::set< ::rtl::OString > StringSet; // FileStream |