VirtualBox

Changeset 73902 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Aug 27, 2018 12:50:23 AM (6 years ago)
Author:
vboxsync
Message:

IPRT/rest: More API code generation bits. bugref:9167 [build fix]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/rest/rest-primary-object-types.cpp

    r73900 r73902  
    9191/** Copy constructor. */
    9292RTCRestBool::RTCRestBool(RTCRestBool const &a_rThat)
    93     : m_fValue(a_rThat.m_fValue)
     93    : RTCRestObjectBase(a_rThat)
     94    , m_fValue(a_rThat.m_fValue)
    9495{
    9596}
     
    192193/** Copy constructor. */
    193194RTCRestInt64::RTCRestInt64(RTCRestInt64 const &a_rThat)
    194     : m_iValue(a_rThat.m_iValue)
     195    : RTCRestObjectBase(a_rThat)
     196    , m_iValue(a_rThat.m_iValue)
    195197{
    196198}
     
    288290/** Copy constructor. */
    289291RTCRestInt32::RTCRestInt32(RTCRestInt32 const &a_rThat)
    290     : m_iValue(a_rThat.m_iValue)
     292    : RTCRestObjectBase(a_rThat)
     293    , m_iValue(a_rThat.m_iValue)
    291294{
    292295}
     
    390393/** Copy constructor. */
    391394RTCRestInt16::RTCRestInt16(RTCRestInt16 const &a_rThat)
    392     : m_iValue(a_rThat.m_iValue)
     395    : RTCRestObjectBase(a_rThat)
     396    , m_iValue(a_rThat.m_iValue)
    393397{
    394398}
     
    492496/** Copy constructor. */
    493497RTCRestDouble::RTCRestDouble(RTCRestDouble const &a_rThat)
    494     : m_rdValue(a_rThat.m_rdValue)
     498    : RTCRestObjectBase(a_rThat)
     499    , m_rdValue(a_rThat.m_rdValue)
    495500{
    496501}
     
    582587RTCRestString::RTCRestString(RTCRestString const &a_rThat)
    583588    : RTCString(a_rThat)
     589    , RTCRestObjectBase(a_rThat)
    584590{
    585591}
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette