Skip to content

Commit

Permalink
Silence clang-tidy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Mar 28, 2024
1 parent 00ca1e1 commit aef67d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ template <typename T>
struct DestructiblePointer
{
DestructiblePointer() = default;
DestructiblePointer (T* ptr) : pointer (ptr) {}
DestructiblePointer (T* ptr) : pointer (ptr) {} // NOLINT(google-explicit-constructor)
DestructiblePointer (const DestructiblePointer&) = delete;
DestructiblePointer& operator= (const DestructiblePointer&) = delete;
DestructiblePointer (DestructiblePointer&& other) noexcept : pointer (other.pointer)

Check warning on line 21 in modules/common/chowdsp_data_structures/Structures/chowdsp_DestructiblePointer.h

View check run for this annotation

Codecov / codecov/patch

modules/common/chowdsp_data_structures/Structures/chowdsp_DestructiblePointer.h#L21

Added line #L21 was not covered by tests
Expand Down

0 comments on commit aef67d6

Please sign in to comment.