mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 17:11:23 +00:00
f63e89f9b4
Moved Atomic.h to util/atomic.hpp List source files in CMakeLists.txt
49 lines
1.0 KiB
C++
49 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#ifdef MSVC_CRT_MEMLEAK_DETECTION
|
|
#define _CRTDBG_MAP_ALLOC
|
|
#include <stdlib.h>
|
|
#include <crtdbg.h>
|
|
#endif
|
|
|
|
#define NOMINMAX
|
|
|
|
//#ifndef __STDC_CONSTANT_MACROS
|
|
//#define __STDC_CONSTANT_MACROS
|
|
//#endif
|
|
|
|
#if defined(MSVC_CRT_MEMLEAK_DETECTION) && defined(_DEBUG) && !defined(DBG_NEW)
|
|
#define DBG_NEW new ( _NORMAL_BLOCK , __FILE__ , __LINE__ )
|
|
#include "define_new_memleakdetect.h"
|
|
#endif
|
|
|
|
#pragma warning( disable : 4351 )
|
|
|
|
// MSVC bug workaround
|
|
#ifdef _MSC_VER
|
|
namespace std { inline namespace literals { inline namespace chrono_literals {}}}
|
|
#endif
|
|
|
|
#include "Utilities/types.h"
|
|
#include "Utilities/BEType.h"
|
|
#include "util/atomic.hpp"
|
|
#include "Utilities/StrFmt.h"
|
|
#include "Utilities/File.h"
|
|
#include "Utilities/Log.h"
|
|
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include <climits>
|
|
#include <exception>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <array>
|
|
#include <functional>
|
|
#include <unordered_map>
|
|
#include <algorithm>
|
|
#include <string_view>
|
|
|
|
using namespace std::literals;
|