Changeset 62636 in vbox for trunk/include
- Timestamp:
- Jul 28, 2016 4:49:39 PM (8 years ago)
- Location:
- trunk/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/MultiResult.h
r62476 r62636 213 213 private: 214 214 215 DECLARE_CLS_NEW_DELETE_NOOP(MultiResult) 215 DECLARE_CLS_NEW_DELETE_NOOP(MultiResult); 216 216 217 217 static void incCounter(); … … 252 252 private: 253 253 254 DECLARE_CLS_NEW_DELETE_NOOP (MultiResultRef)254 DECLARE_CLS_NEW_DELETE_NOOP(MultiResultRef); 255 255 256 256 HRESULT &mRC; -
trunk/include/VBox/com/array.h
r62361 r62636 1098 1098 protected: 1099 1099 1100 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP(SafeArray) 1100 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP(SafeArray); 1101 1101 1102 1102 /** -
trunk/include/iprt/cdefs.h
r62624 r62636 3551 3551 * @param Cls class name to declare for 3552 3552 */ 3553 3554 3553 #define DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP(Cls) \ 3555 inline Cls 3556 inline Cls &operator= (const Cls &) ;3554 inline Cls(const Cls &); \ 3555 inline Cls &operator= (const Cls &) 3557 3556 3558 3557 … … 3572 3571 #define DECLARE_CLS_NEW_DELETE_NOOP(Cls) \ 3573 3572 inline static void *operator new (size_t); \ 3574 inline static void operator delete (void *) ;3573 inline static void operator delete (void *) 3575 3574 3576 3575 #endif /* __cplusplus */ -
trunk/include/iprt/cpp/xml.h
r62474 r62636 316 316 317 317 /* auto_ptr data doesn't have proper copy semantics */ 318 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP (File)318 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP(File); 319 319 }; 320 320 … … 343 343 344 344 /* auto_ptr data doesn't have proper copy semantics */ 345 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP(MemoryBuf) 345 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP(MemoryBuf); 346 346 }; 347 347
Note:
See TracChangeset
for help on using the changeset viewer.