diff options
Diffstat (limited to 'euler/include/std/fwd/vector.hpp')
-rw-r--r-- | euler/include/std/fwd/vector.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/euler/include/std/fwd/vector.hpp b/euler/include/std/fwd/vector.hpp new file mode 100644 index 0000000..fd8fe15 --- /dev/null +++ b/euler/include/std/fwd/vector.hpp @@ -0,0 +1,8 @@ +#pragma once + +#include <std/fwd/allocator.hpp> + +namespace std { + template <class T, class Allocator = std::allocator<T>> + class vector; +} |