Kaydet (Commit) 7f15d261 authored tarafından Michael Stahl's avatar Michael Stahl

fix -Werror=extra: base class ‘class salhelper::SimpleReferenceObject’

should be explicitly initialized in the copy constructor

Change-Id: If375412e43bad6bced7bd5c69578f998b9e6618c
üst c5ed52b1
...@@ -75,7 +75,10 @@ namespace connectivity ...@@ -75,7 +75,10 @@ namespace connectivity
ORefVector() {} ORefVector() {}
ORefVector(size_t _st) : m_vector(_st) {} 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) ORefVector& operator=(const ORefVector& _rRH)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment