Changeset 106516 in vbox
- Timestamp:
- Oct 20, 2024 2:01:39 AM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 165348
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/settings.h
r106384 r106516 653 653 { 654 654 RecordingScreen(uint32_t idScreen = UINT32_MAX); 655 656 655 virtual ~RecordingScreen(); 656 657 #if RT_CPLUSPLUS_PREREQ(201100) /* VC2022: Excplit default copy constructor and copy assignment operator to avoid warnings. */ 658 RecordingScreen(RecordingScreen const &) = default; 659 RecordingScreen &operator=(RecordingScreen const &) = default; 660 #endif 657 661 658 662 void applyDefaults(void); -
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.