We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 872a383 commit ca19278Copy full SHA for ca19278
dengr/ChannelBit.hpp
@@ -29,7 +29,7 @@
29
#ifndef COM_SAXBOPHONE_DENGR_CHANNEL_BIT
30
#define COM_SAXBOPHONE_DENGR_CHANNEL_BIT
31
32
-#include <array>
+#include <bitset>
33
34
35
namespace com::saxbophone::dengr {
@@ -43,7 +43,7 @@ namespace com::saxbophone::dengr {
43
* @tparam LENGTH the length of the ChannelBitArray
44
*/
45
template<std::size_t LENGTH>
46
- using ChannelBitArray = std::array<ChannelBit, LENGTH>;
+ using ChannelBitArray = std::bitset<LENGTH>;
47
}
48
49
#endif // include guard
0 commit comments