diff options
author | 2018-12-30 13:21:11 +0100 | |
---|---|---|
committer | 2018-12-30 13:24:16 +0100 | |
commit | 94fbe660927e3759b10edb016a18259f2d362e83 (patch) | |
tree | 2afda976d9df7c7375a5cc01326a2c35cc817bab | |
parent | 269b913ec382a0f51c8e28afb4cd4422ef64f269 (diff) |
Fixed a few missing #includes flagged by VS2019 beta, nw
-rw-r--r-- | src/lib/util/timeconv.h | 1 | ||||
-rw-r--r-- | src/osd/modules/render/bgfx/effect.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/util/timeconv.h b/src/lib/util/timeconv.h index b24705e5867..26decf0fd65 100644 --- a/src/lib/util/timeconv.h +++ b/src/lib/util/timeconv.h @@ -18,6 +18,7 @@ #include <chrono> #include <algorithm> +#include <stdexcept> namespace util { diff --git a/src/osd/modules/render/bgfx/effect.h b/src/osd/modules/render/bgfx/effect.h index a17cadaf8ff..02ef9fd4f54 100644 --- a/src/osd/modules/render/bgfx/effect.h +++ b/src/osd/modules/render/bgfx/effect.h @@ -15,6 +15,7 @@ #include <vector> #include <map> +#include <string> class bgfx_uniform; |