From f290bf275189726ebc81610ef4f1f667ca723fe3 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 11 Aug 2019 20:53:20 -0700 Subject: Move vector.h to common --- common/vector.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 common/vector.h (limited to 'common') diff --git a/common/vector.h b/common/vector.h new file mode 100644 index 00000000..1b69d6a7 --- /dev/null +++ b/common/vector.h @@ -0,0 +1,15 @@ +#ifndef AL_VECTOR_H +#define AL_VECTOR_H + +#include + +#include "almalloc.h" + +namespace al { + +template +using vector = std::vector>; + +} // namespace al + +#endif /* AL_VECTOR_H */ -- cgit v1.2.3