29 using std::vector<T, Alloc>::vector;
30 typedef typename std::vector<T, Alloc>::reference reference;
31 typedef typename std::vector<T, Alloc>::const_reference const_reference;
32 typedef typename std::vector<T, Alloc>::size_type size_type;
33 typedef typename std::vector<T>::const_iterator const_iterator;
34 reference operator[](size_type n) {
return this->at(n); }
35 const_reference operator[](size_type n)
const {
return this->at(n); }
TODO: this is not really specific to BMV2, it should reside somewhere else.
Definition applyOptionsPragmas.cpp:24