Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimi1010 committed Nov 27, 2024
1 parent 68130d5 commit 9ad70af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tests/Pcap++Test/Tests/DeviceListBaseTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ namespace
template <class T> struct DerivedDeviceList : public pcpp::internal::DeviceListBase<T>
{
DerivedDeviceList() = default;
DerivedDeviceList(pcpp::PointerVector<T> devices) : pcpp::internal::DeviceListBase<T>(std::move(devices))
explicit DerivedDeviceList(pcpp::PointerVector<T> devices)
: pcpp::internal::DeviceListBase<T>(std::move(devices))
{}
};

Expand Down

0 comments on commit 9ad70af

Please sign in to comment.