Fleet  0.0.9
Inference in the LOT
ReservedVector.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <vector>
4 
8 
9 template<typename T, size_t N>
10 class ReservedVector : public std::vector<T> {
11 public:
12  ReservedVector() {
13  this->reserve(N);
14  }
15 };