summaryrefslogtreecommitdiff
path: root/include/connectivity
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2017-11-04 19:55:21 +0100
committerDavid Tardon <dtardon@redhat.com>2017-11-04 20:06:52 +0100
commit4f2308bb6e5c26e304bb9372b3e5971e8ce24df1 (patch)
treea4da316822c1edbb138e627ba8733936ecd67f60 /include/connectivity
parent6c6368217122363f1491a876aaca0864cf864c4d (diff)
fix build with older boost
Change-Id: Ie3f7a32bf8d5c9c118d35272c8e197b9c6ffcd80
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 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!(); }
};