Renamed item_type => value_type in circular_q

This commit is contained in:
gabime 2019-09-17 12:07:54 +03:00
parent 4fffd3a111
commit 4985875a15
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class circular_q
std::vector<T> v_;
public:
using item_type = T;
using value_type = T;
// empty ctor - create a disabled queue with no elements allocated at all
circular_q() = default;