Party should be ~private

This commit is contained in:
Allen Hill
2026-07-21 12:51:49 -07:00
parent 8950bd6917
commit 5bbbb6c011
+3 -1
View File
@@ -20,10 +20,12 @@
#include "stdshim.hpp" #include "stdshim.hpp"
namespace avclan { namespace avclan {
namespace detail {
enum class Party : uint8_t { Sender, Recipient }; enum class Party : uint8_t { Sender, Recipient };
}
template <DeviceInterface... Devs> class Peripheral { template <DeviceInterface... Devs> class Peripheral {
using Party = detail::Party;
using enum Party; using enum Party;
public: public: