Changeset 106517 in vbox
- Timestamp:
- Oct 20, 2024 2:27:17 AM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 165349
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/Dhcpd/DhcpOptions.h
r106061 r106517 2 2 /** @file 3 3 * DHCP server - DHCP options 4 * 5 * @note This file is also used by Main! 6 * @todo r=bird: Move to global include directory. 4 7 */ 5 8 … … 69 72 virtual ~DhcpOption() 70 73 {} 74 75 #if RT_CPLUSPLUS_PREREQ(201100) /* VC2022: Excplit default copy constructor and copy assignment operator to avoid warnings. */ 76 DhcpOption(DhcpOption const &) = default; 77 DhcpOption &operator=(DhcpOption const &) = default; 78 #endif 71 79 72 80 public:
Note:
See TracChangeset
for help on using the changeset viewer.