mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-10 07:24:54 +01:00
29 lines
1.2 KiB
C++
29 lines
1.2 KiB
C++
#pragma once // No BOM and only basic ASCII in this header, or a neko will die
|
|
|
|
#include "util/types.hpp" // IWYU pragma: export
|
|
#include "util/atomic.hpp" // IWYU pragma: export
|
|
#include "util/endian.hpp" // IWYU pragma: export
|
|
#include "Utilities/Config.h" // IWYU pragma: export
|
|
#include "Utilities/StrFmt.h" // IWYU pragma: export
|
|
#include "Utilities/File.h" // IWYU pragma: export
|
|
#include "util/logs.hpp" // IWYU pragma: export
|
|
#include "util/shared_ptr.hpp" // IWYU pragma: export
|
|
#include "util/typeindices.hpp" // IWYU pragma: export
|
|
#include "util/fixed_typemap.hpp" // IWYU pragma: export
|
|
#include "util/auto_typemap.hpp" // IWYU pragma: export
|
|
|
|
#include <cstdlib> // IWYU pragma: export
|
|
#include <cstring> // IWYU pragma: export
|
|
#include <string> // IWYU pragma: export
|
|
#include <memory> // IWYU pragma: export
|
|
#include <vector> // IWYU pragma: export
|
|
#include <array> // IWYU pragma: export
|
|
#include <functional> // IWYU pragma: export
|
|
#include <unordered_map> // IWYU pragma: export
|
|
#include <algorithm> // IWYU pragma: export
|
|
#include <string_view> // IWYU pragma: export
|
|
|
|
#if defined(__INTELLISENSE__) && !defined(LLVM_AVAILABLE)
|
|
#define LLVM_AVAILABLE
|
|
#endif
|