mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-06 00:30:18 +01:00
There are better memleak detection tools. 1) Requires to guard placement new and external libs 2) Doesn't work thoroughly
24 lines
512 B
C++
24 lines
512 B
C++
#pragma once // No BOM and only basic ASCII in this header, or a neko will die
|
|
|
|
#define NOMINMAX
|
|
|
|
#include "util/types.hpp"
|
|
#include "util/atomic.hpp"
|
|
#include "util/endian.hpp"
|
|
#include "Utilities/StrFmt.h"
|
|
#include "Utilities/File.h"
|
|
#include "util/logs.hpp"
|
|
#include "util/shared_ptr.hpp"
|
|
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include <climits>
|
|
#include <string>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <array>
|
|
#include <functional>
|
|
#include <unordered_map>
|
|
#include <algorithm>
|
|
#include <string_view>
|