diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-25 20:01:32 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-06-25 20:01:32 +1000 |
commit | 13a74602bd4c46149da9949d448387a40b8ebd1c (patch) | |
tree | 74c5d7c4f3732155e65e8df454017c5b7d2ca35d /source/core/StarPch.hpp | |
parent | df661be1a3623d0a655758095fb08cb953448336 (diff) |
Upgrade to C++17
Diffstat (limited to 'source/core/StarPch.hpp')
-rw-r--r-- | source/core/StarPch.hpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/source/core/StarPch.hpp b/source/core/StarPch.hpp new file mode 100644 index 0000000..809156c --- /dev/null +++ b/source/core/StarPch.hpp @@ -0,0 +1,25 @@ +#ifndef STAR_PCH_HPP +#define STAR_PCH_HPP + +#include <cstdint> +#include <cstdlib> +#include <cstddef> +#include <cstring> +#include <cmath> +#include <tuple> +#include <memory> +#include <functional> +#include <algorithm> +#include <iostream> +#include <initializer_list> +#include <exception> +#include <stdexcept> +#include <atomic> +#include <string> +#include <string_view> +#include <iterator> +#include <type_traits> +#include <vector> + + +#endif
\ No newline at end of file |