Skip to content
Snippets Groups Projects
Commit ef30e87a authored by Niccolò Izzo's avatar Niccolò Izzo Committed by Alessandro Di Federico
Browse files

Provide `value_type` in `LazySmallBitVector`

This commit introduces `value_type` in `LazySmallBitVector` to fix
compilation error on Boost versions newer than 1.65.
The bug was triggered in unit tests.
parent 55eb769a
No related branches found
No related tags found
No related merge requests found
...@@ -105,6 +105,7 @@ class LazySmallBitVector { ...@@ -105,6 +105,7 @@ class LazySmallBitVector {
public: public:
using const_iterator = LazySmallBitVectorIterator<const LazySmallBitVector>; using const_iterator = LazySmallBitVectorIterator<const LazySmallBitVector>;
using iterator = LazySmallBitVectorIterator<LazySmallBitVector>; using iterator = LazySmallBitVectorIterator<LazySmallBitVector>;
typedef bool value_type;
private: private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment