summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/connectivity/CommonTools.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/connectivity/CommonTools.hxx b/include/connectivity/CommonTools.hxx
index 1ef5908bc23e..cda2f65df144 100644
--- a/include/connectivity/CommonTools.hxx
+++ b/include/connectivity/CommonTools.hxx
@@ -75,7 +75,10 @@ namespace connectivity
ORefVector() {}
ORefVector(size_t _st) : m_vector(_st) {}
- ORefVector(const ORefVector& _rRH) : m_vector(_rRH.m_vector) {}
+ ORefVector(const ORefVector& rOther)
+ : salhelper::SimpleReferenceObject()
+ , m_vector(rOther.m_vector)
+ {}
ORefVector& operator=(const ORefVector& _rRH)
{