diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-23 09:01:36 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-23 10:52:11 +0200 |
commit | be9a39488420b069ed5c7fd65347b2ff68883e62 (patch) | |
tree | a95bd53d5a9347c9e2e7b16efccba86ba6c1653b /configmgr/source/propertynode.hxx | |
parent | 32c43ee75c094ffe3c34f7a713aa252479515ad0 (diff) |
clang-tidy modernize-pass-by-value in configmgr
Change-Id: If2e69c04e4d72ec6911fb435092275dbfffbf991
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134752
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'configmgr/source/propertynode.hxx')
-rw-r--r-- | configmgr/source/propertynode.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configmgr/source/propertynode.hxx b/configmgr/source/propertynode.hxx index 9a3f8f91e87e..108b8e944b2b 100644 --- a/configmgr/source/propertynode.hxx +++ b/configmgr/source/propertynode.hxx @@ -36,7 +36,7 @@ class PropertyNode: public Node { public: PropertyNode( int layer, Type staticType, bool nillable, - css::uno::Any const & value, bool extension); + css::uno::Any value, bool extension); virtual rtl::Reference< Node > clone(bool keepTemplateName) const override; |