- Timestamp:
- Oct 20, 2024 2:01:39 AM (6 weeks ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
r106061 r106516 1061 1061 1062 1062 GuestToolboxStreamBlock(void); 1063 1064 1063 virtual ~GuestToolboxStreamBlock(void); 1064 1065 #if RT_CPLUSPLUS_PREREQ(201100) /* VC2022: Excplit default copy constructor and copy assignment operator to avoid warnings. */ 1066 GuestToolboxStreamBlock(GuestToolboxStreamBlock const &) = default; 1067 GuestToolboxStreamBlock &operator=(GuestToolboxStreamBlock const &) = default; 1068 #endif 1065 1069 1066 1070 public: -
trunk/src/VBox/Main/include/MachineImpl.h
r106061 r106516 299 299 HWData(); 300 300 ~HWData(); 301 #if RT_CPLUSPLUS_PREREQ(201100) /* VC2022: Excplit default copy constructor and copy assignment operator to avoid warnings. */ 302 HWData(HWData const &) = default; 303 HWData &operator=(HWData const &) = default; 304 #endif 301 305 302 306 Bstr mHWVersion;
Note:
See TracChangeset
for help on using the changeset viewer.