We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f8012a commit c20f801Copy full SHA for c20f801
1 file changed
examples/cpp/common/pcap/pcap_file_storage.h
@@ -19,14 +19,13 @@ namespace pcap
19
20
pcap_file_storage() = default;
21
22
-
23
pcap_file_storage(const pcap_file_storage& other) = delete;
24
25
- pcap_file_storage(pcap_file_storage&& other) noexcept = delete;
+ pcap_file_storage(pcap_file_storage&& other) noexcept = default;
26
27
pcap_file_storage& operator=(const pcap_file_storage& other) = delete;
28
29
- pcap_file_storage& operator=(pcap_file_storage&& other) noexcept = delete;
+ pcap_file_storage& operator=(pcap_file_storage&& other) noexcept = default;
30
31
~pcap_file_storage()
32
{
0 commit comments