summaryrefslogtreecommitdiff
path: root/euler/include/std/vector.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'euler/include/std/vector.hpp')
-rw-r--r--euler/include/std/vector.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/euler/include/std/vector.hpp b/euler/include/std/vector.hpp
index a1ac21d..1c35d9d 100644
--- a/euler/include/std/vector.hpp
+++ b/euler/include/std/vector.hpp
@@ -1,10 +1,12 @@
#pragma once
+#include <std/fwd/vector.hpp>
+
#include <memory>
namespace std {
- template <class T, class Allocator = std::allocator<T>>
+ template <class T, class Allocator>
class vector {
public: