summaryrefslogtreecommitdiff
path: root/src/memory.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-01-13 23:54:58 +0000
committerMaxime Coste <frrrwww@gmail.com>2015-01-13 23:54:58 +0000
commit2415d3f63ca6a056736760c7a49eeda54bd7d376 (patch)
treeeab27036e3697223c068a11aab80dda17d85c541 /src/memory.hh
parent31a9e3b3fffa00d012907fdf544d58a52af0afa8 (diff)
Add missing <new> include
Diffstat (limited to 'src/memory.hh')
-rw-r--r--src/memory.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/memory.hh b/src/memory.hh
index 6fcd2f59..b48d3d3f 100644
--- a/src/memory.hh
+++ b/src/memory.hh
@@ -1,8 +1,9 @@
#ifndef memory_hh_INCLUDED
#define memory_hh_INCLUDED
-#include <cstdlib>
#include <cstddef>
+#include <cstdlib>
+#include <new>
#include <utility>
#include "assert.hh"