Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dengr/ChannelBit.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#ifndef COM_SAXBOPHONE_DENGR_CHANNEL_BIT
#define COM_SAXBOPHONE_DENGR_CHANNEL_BIT

#include <array>
#include <bitset>


namespace com::saxbophone::dengr {
Expand All @@ -43,7 +43,7 @@ namespace com::saxbophone::dengr {
* @tparam LENGTH the length of the ChannelBitArray
*/
template<std::size_t LENGTH>
using ChannelBitArray = std::array<ChannelBit, LENGTH>;
using ChannelBitArray = std::bitset<LENGTH>;
}

#endif // include guard