Commit ac5730cd authored by Wesley W. Terpstra's avatar Wesley W. Terpstra

Organization helps readability

parent 04a56afb
......@@ -141,6 +141,9 @@ class Bits {
// Empty bits
Bits();
// Given length
explicit Bits(size_type n, const bool& value);
// Named constructors
struct InvalidConversion { };
explicit Bits(uint8_t x);
......@@ -159,9 +162,6 @@ class Bits {
uint8_t get_uint8(size_type i) const;
void set_uint8(size_type i, uint8_t b);
// Given length
explicit Bits(size_type n, const bool& value);
//template <typename InputIterator>
//void assign(InputIterator first, InputIterator last);
//void assign(size_type n, const bool& value);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment