[ox/std] Add missing includes to CMake install and std.hpp

This commit is contained in:
Gary Talent 2020-06-15 04:54:52 -05:00
parent 0eaf54bd22
commit 20f4d50ad6
2 changed files with 7 additions and 3 deletions

View File

@ -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

View File

@ -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"