diff options
author | David Tardon <dtardon@redhat.com> | 2017-11-04 19:55:21 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2017-11-04 20:06:52 +0100 |
commit | 4f2308bb6e5c26e304bb9372b3e5971e8ce24df1 (patch) | |
tree | a4da316822c1edbb138e627ba8733936ecd67f60 /include/connectivity | |
parent | 6c6368217122363f1491a876aaca0864cf864c4d (diff) |
fix build with older boost
Change-Id: Ie3f7a32bf8d5c9c118d35272c8e197b9c6ffcd80
Diffstat (limited to 'include/connectivity')
-rw-r--r-- | include/connectivity/sqlerror.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/connectivity/sqlerror.hxx b/include/connectivity/sqlerror.hxx index 026d6d84bbae..b1084959a94b 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( rhs ) { } + ParamValue( ParamValue const& rhs ) : base_type( static_cast<base_type const&>( rhs ) ) { } bool is() const { return !base_type::operator!(); } }; |