Changeset 81670 in vbox
- Timestamp:
- Nov 5, 2019 11:17:59 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 134430
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/restbase.h
r76585 r81670 153 153 RTCRestObjectBase(RTCRestObjectBase const &a_rThat) RT_NOEXCEPT; 154 154 virtual ~RTCRestObjectBase(); 155 156 /** Copy assignment operator. */ 157 RTCRestObjectBase &operator=(RTCRestObjectBase const &a_rThat) RT_NOEXCEPT; 155 158 156 159 /** -
trunk/src/VBox/Runtime/common/rest/rest-primary-object-types.cpp
r77262 r81670 65 65 { 66 66 /* nothing to do */ 67 } 68 69 70 /** Copy assignment operator. */ 71 RTCRestObjectBase &RTCRestObjectBase::operator=(RTCRestObjectBase const &a_rThat) RT_NOEXCEPT 72 { 73 m_fNullIndicator = a_rThat.m_fNullIndicator; 74 return *this; 67 75 } 68 76
Note:
See TracChangeset
for help on using the changeset viewer.