Changeset 106498 in vbox for trunk/include/iprt/cpp
- Timestamp:
- Oct 19, 2024 3:12:39 AM (5 months ago)
- svn:sync-xref-src-repo-rev:
- 165330
- Location:
- trunk/include/iprt/cpp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/restbase.h
r106061 r106498 95 95 } 96 96 } 97 98 #if RT_CPLUSPLUS_PREREQ(201100) 99 RTCRestJsonCursor &operator=(struct RTCRestJsonCursor const &a_rThat) = delete; 100 #endif 97 101 }; 98 102 … … 148 152 */ 149 153 virtual char *getPath(RTCRestJsonCursor const &a_rCursor, char *a_pszDst, size_t a_cbDst) const RT_NOEXCEPT; 154 155 #if RT_CPLUSPLUS_PREREQ(201100) 156 RTCRestJsonPrimaryCursor &operator=(RTCRestJsonPrimaryCursor const &a_rThat) = delete; 157 #endif 150 158 }; 151 159 -
trunk/include/iprt/cpp/restoutput.h
r106061 r106498 60 60 RTCRestOutputBase() RT_NOEXCEPT; 61 61 virtual ~RTCRestOutputBase(); 62 63 RTCRestOutputBase(const RTCRestOutputBase &a_rThat) RT_NOEXCEPT; 64 RTCRestOutputBase &operator=(const RTCRestOutputBase &a_rThat) RT_NOEXCEPT; 62 65 63 66 /** … … 151 154 virtual ~RTCRestOutputPrettyBase(); 152 155 156 RTCRestOutputPrettyBase(const RTCRestOutputPrettyBase &a_rThat) RT_NOEXCEPT; 157 RTCRestOutputPrettyBase &operator=(const RTCRestOutputPrettyBase &a_rThat) RT_NOEXCEPT; 158 153 159 /** 154 160 * Begins an array. … … 228 234 229 235 /* Make non-copyable (RTCNonCopyable causes warnings): */ 236 #if RT_CPLUSPLUS_PREREQ(201100) 237 RTCRestOutputToString(RTCRestOutputToString const &) = delete; 238 RTCRestOutputToString *operator=(RTCRestOutputToString const &) = delete; 239 #else 230 240 RTCRestOutputToString(RTCRestOutputToString const &); 231 241 RTCRestOutputToString *operator=(RTCRestOutputToString const &); 242 #endif 232 243 }; 233 244 … … 269 280 270 281 /* Make non-copyable (RTCNonCopyable causes warnings): */ 282 #if RT_CPLUSPLUS_PREREQ(201100) 283 RTCRestOutputPrettyToString(RTCRestOutputToString const &) = delete; 284 RTCRestOutputPrettyToString *operator=(RTCRestOutputToString const &) = delete; 285 #else 271 286 RTCRestOutputPrettyToString(RTCRestOutputToString const &); 272 287 RTCRestOutputPrettyToString *operator=(RTCRestOutputToString const &); 288 #endif 273 289 }; 274 290
Note:
See TracChangeset
for help on using the changeset viewer.