From 20f4d50ad6bf1d27056bb832743a0ea7505487f7 Mon Sep 17 00:00:00 2001
From: Gary Talent <gary@drinkingtea.net>
Date: Mon, 15 Jun 2020 04:54:52 -0500
Subject: [PATCH] [ox/std] Add missing includes to CMake install and std.hpp

---
 deps/ox/src/ox/std/CMakeLists.txt | 6 ++++--
 deps/ox/src/ox/std/std.hpp        | 4 +++-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/deps/ox/src/ox/std/CMakeLists.txt b/deps/ox/src/ox/std/CMakeLists.txt
index 3ca9116d..c4ced479 100644
--- a/deps/ox/src/ox/std/CMakeLists.txt
+++ b/deps/ox/src/ox/std/CMakeLists.txt
@@ -48,17 +48,19 @@ install(
 		error.hpp
 		hardware.hpp
 		hashmap.hpp
+		heapmgr.hpp
 		math.hpp
 		memops.hpp
 		new.hpp
 		random.hpp
+		std.hpp
+		stddef.hpp
 		stacktrace.hpp
 		string.hpp
 		strongint.hpp
 		strops.hpp
-		std.hpp
-		stddef.hpp
 		trace.hpp
+		typeinfo.hpp
 		types.hpp
 		typetraits.hpp
 		units.hpp
diff --git a/deps/ox/src/ox/std/std.hpp b/deps/ox/src/ox/std/std.hpp
index 11b55e04..b815c10d 100644
--- a/deps/ox/src/ox/std/std.hpp
+++ b/deps/ox/src/ox/std/std.hpp
@@ -12,6 +12,7 @@
 #include "bit.hpp"
 #include "bstring.hpp"
 #include "byteswap.hpp"
+#include "defines.hpp"
 #include "error.hpp"
 #include "hardware.hpp"
 #include "hashmap.hpp"
@@ -22,9 +23,10 @@
 #include "random.hpp"
 #include "stacktrace.hpp"
 #include "stddef.hpp"
+#include "string.hpp"
 #include "strongint.hpp"
 #include "strops.hpp"
-#include "string.hpp"
+#include "trace.hpp"
 #include "typeinfo.hpp"
 #include "types.hpp"
 #include "typetraits.hpp"