Some std include moved

This commit is contained in:
Nekotekina 2014-08-28 20:29:05 +04:00
parent b37f3e1b93
commit 693e7a38fa
54 changed files with 44 additions and 121 deletions

View file

@ -1,10 +1,5 @@
#pragma once
#include <algorithm>
using std::min;
using std::max;
#define re16(val) _byteswap_ushort(val)
#define re32(val) _byteswap_ulong(val)
#define re64(val) _byteswap_uint64(val)

View file

@ -3,15 +3,7 @@
#include "Log.h"
#include "rMsgBox.h"
#include <iostream>
#include <string>
#include <cinttypes>
#include <memory>
#include <vector>
#include <mutex>
#include <condition_variable>
#include <thread>
#include <set>
#include <array>
#include "Thread.h"
#include "rFile.h"

View file

@ -1,11 +1,4 @@
#pragma once
#include <iostream>
#include <string>
#include <cinttypes>
#include <memory>
#include <vector>
#include <mutex>
#include <set>
#include <array>
#include "Utilities/MTRingbuffer.h"

View file

@ -1,8 +1,4 @@
#pragma once
#include <thread>
#include <array>
#include <mutex>
#include <algorithm>
//Simple non-resizable FIFO Ringbuffer that can be simultaneously be read from and written to
//if we ever get to use boost please replace this with boost::circular_buffer, there's no reason

View file

@ -1,4 +1,4 @@
#include <stdafx.h>
#include "stdafx.h"
#include "Emu/System.h"
#include "Emu/CPU/CPUThread.h"

View file

@ -1,7 +1,5 @@
#pragma once
#include <atomic>
bool SM_IsAborted();
void SM_Sleep();
size_t SM_GetCurrentThreadId();

View file

@ -1,8 +1,5 @@
#pragma once
#include <mutex>
#include <condition_variable>
class SSemaphore
{
const u32 m_max;

View file

@ -1,10 +1,4 @@
#pragma once
#include <string>
#include <vector>
#include <ostream>
#include <sstream>
#include <cstdio>
#include <functional>
#if defined(_MSC_VER)
#define snprintf _snprintf

View file

@ -1,9 +1,4 @@
#pragma once
#include <functional>
#include <thread>
#include <mutex>
#include <atomic>
#include <condition_variable>
static std::thread::id main_thread;

View file

@ -1,7 +1,5 @@
#pragma once
#include <string>
struct FileInfo {
std::string name;
std::string fullName;

View file

@ -1,6 +1,4 @@
#pragma once
#include <vector>
#include <string>
struct rPlatform
{

View file

@ -1,7 +1,4 @@
#include "stdafx.h"
#include <memory>
#include "Utilities/rXml.h"
#include <wx/xml/xml.h>