summaryrefslogtreecommitdiff
path: root/include/comphelper/anycompare.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-10-28 21:01:40 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-29 07:05:53 +0100
commit13532e63e715ab2bfd1a8040bec6f700fbfa6250 (patch)
tree0ca49b7e2bbb87218ae7b49407527dfbabfbcf72 /include/comphelper/anycompare.hxx
parent857c9193615574539e21e4b58069e4f4a905ac02 (diff)
loplugin:finalclass in comphelper
Change-Id: Ic64151191e46dff81c0a5cb8377f89e1e4afb269 Reviewed-on: https://gerrit.libreoffice.org/81624 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/comphelper/anycompare.hxx')
-rw-r--r--include/comphelper/anycompare.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/comphelper/anycompare.hxx b/include/comphelper/anycompare.hxx
index 8b5a941a781c..782c7f19951f 100644
--- a/include/comphelper/anycompare.hxx
+++ b/include/comphelper/anycompare.hxx
@@ -66,7 +66,7 @@ namespace comphelper
//= ScalarPredicateLess
template< typename SCALAR >
- class ScalarPredicateLess : public IKeyPredicateLess
+ class ScalarPredicateLess final : public IKeyPredicateLess
{
public:
virtual bool isLess( css::uno::Any const & _lhs, css::uno::Any const & _rhs ) const override
@@ -83,7 +83,7 @@ namespace comphelper
//= StringPredicateLess
- class StringPredicateLess : public IKeyPredicateLess
+ class StringPredicateLess final : public IKeyPredicateLess
{
public:
virtual bool isLess( css::uno::Any const & _lhs, css::uno::Any const & _rhs ) const override
@@ -100,7 +100,7 @@ namespace comphelper
//= StringCollationPredicateLess
- class StringCollationPredicateLess : public IKeyPredicateLess
+ class StringCollationPredicateLess final : public IKeyPredicateLess
{
public:
StringCollationPredicateLess( css::uno::Reference< css::i18n::XCollator > const & i_collator )
@@ -125,7 +125,7 @@ namespace comphelper
//= TypePredicateLess
- class TypePredicateLess : public IKeyPredicateLess
+ class TypePredicateLess final : public IKeyPredicateLess
{
public:
virtual bool isLess( css::uno::Any const & _lhs, css::uno::Any const & _rhs ) const override
@@ -142,7 +142,7 @@ namespace comphelper
//= EnumPredicateLess
- class EnumPredicateLess : public IKeyPredicateLess
+ class EnumPredicateLess final : public IKeyPredicateLess
{
public:
EnumPredicateLess( css::uno::Type const & _enumType )
@@ -169,7 +169,7 @@ namespace comphelper
//= InterfacePredicateLess
- class InterfacePredicateLess : public IKeyPredicateLess
+ class InterfacePredicateLess final : public IKeyPredicateLess
{
public:
virtual bool isLess( css::uno::Any const & _lhs, css::uno::Any const & _rhs ) const override