20 using std::vector<T, Alloc>::vector;
21 typedef typename std::vector<T, Alloc>::reference reference;
22 typedef typename std::vector<T, Alloc>::const_reference const_reference;
23 typedef typename std::vector<T, Alloc>::size_type size_type;
24 typedef typename std::vector<T>::const_iterator const_iterator;
25 reference operator[](size_type n) {
return this->at(n); }
26 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:13