summaryrefslogtreecommitdiff
path: root/include/connectivity
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-06-03 21:14:57 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-06-05 21:18:13 +0200
commit33451555e4fd8479c6ce64aad91ea93f3e03e633 (patch)
tree3bbeb9dd0c4b176b2b13eebf4ed75ac5106ae557 /include/connectivity
parent7392e1326d4d2512576aa61c677068a560620bb8 (diff)
Improved loplugin:cstylecast to reference types: connectivity
Change-Id: I63c747efa2aacf4cb23de6fe9ab02af7abc107f9
Diffstat (limited to 'include/connectivity')
-rw-r--r--include/connectivity/sqlerror.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/connectivity/sqlerror.hxx b/include/connectivity/sqlerror.hxx
index cba93313abb9..4c4d6e683c01 100644
--- a/include/connectivity/sqlerror.hxx
+++ b/include/connectivity/sqlerror.hxx
@@ -71,7 +71,7 @@ namespace connectivity
public:
ParamValue( ) : base_type( ) { }
ParamValue( OUString const& val ) : base_type( val ) { }
- ParamValue( ParamValue const& rhs ) : base_type( (base_type const&)rhs ) { }
+ ParamValue( ParamValue const& rhs ) : base_type( rhs ) { }
bool is() const { return !base_type::operator!(); }
};