mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 13:01:27 +12:00
stdafx.h: fix clang warnings
This commit is contained in:
parent
a9df046f21
commit
3d0a68c9e8
1 changed files with 21 additions and 21 deletions
|
@ -1,24 +1,24 @@
|
|||
#pragma once // No BOM and only basic ASCII in this header, or a neko will die
|
||||
|
||||
#include "util/types.hpp"
|
||||
#include "util/atomic.hpp"
|
||||
#include "util/endian.hpp"
|
||||
#include "Utilities/Config.h"
|
||||
#include "Utilities/StrFmt.h"
|
||||
#include "Utilities/File.h"
|
||||
#include "util/logs.hpp"
|
||||
#include "util/shared_ptr.hpp"
|
||||
#include "util/typeindices.hpp"
|
||||
#include "util/fixed_typemap.hpp"
|
||||
#include "util/auto_typemap.hpp"
|
||||
#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>
|
||||
#include <cstring>
|
||||
#include <string>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
#include <array>
|
||||
#include <functional>
|
||||
#include <unordered_map>
|
||||
#include <algorithm>
|
||||
#include <string_view>
|
||||
#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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue