Skip to content

Commit

Permalink
telemetry - holder bugfix - mark move constructor as default instead …
Browse files Browse the repository at this point in the history
…of delete
  • Loading branch information
SiskaPavel committed Nov 4, 2024
1 parent 89efb38 commit 2aff06a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/telemetry/holder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Holder {
* @brief Move constructor
* @param other Other holder
*/
Holder(Holder&& other) = delete;
Holder(Holder&& other) = default;

/**
* @brief Move assignment
Expand Down

0 comments on commit 2aff06a

Please sign in to comment.