Merge pull request #1120 from rohit-n/muh-precompiled-headers

Fix build failing when disabling precompiled headers.
This commit is contained in:
Ryan Houdek
2014-09-19 17:43:42 -05:00
39 changed files with 50 additions and 11 deletions

View File

@ -3,7 +3,7 @@
// Refer to the license.txt file included.
#include "Common/ColorUtil.h"
#include "Common/CommonTypes.h"
#include "Common/CommonFuncs.h"
namespace ColorUtil
{

View File

@ -11,7 +11,7 @@
#include <ctime>
#include <string.h>
#include "Common/CommonTypes.h"
#include "Common/Common.h"
#include "Common/Crypto/bn.h"
#include "Common/Crypto/ec.h"

View File

@ -3,6 +3,7 @@
// Refer to the license.txt file included.
#include <algorithm>
#include "Common/CommonFuncs.h"
#include "Common/Hash.h"
#if _M_SSE >= 0x402
#include "Common/CPUDetect.h"

View File

@ -4,6 +4,7 @@
#include <cmath>
#include <cstring>
#include <limits>
#include <numeric>
#include "Common/CommonTypes.h"

View File

@ -6,8 +6,11 @@
#include <cstdlib>
#include <string>
#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"
#include "Common/MemoryUtil.h"
#include "Common/MsgHandler.h"
#include "Common/Logging/Log.h"
#ifdef _WIN32
#include <windows.h>

View File

@ -6,6 +6,8 @@
#include <cstring>
#include <errno.h>
#include "Common/CommonFuncs.h"
// Neither Android nor OS X support TLS
#if defined(__APPLE__) || (ANDROID && __clang__)
#define __thread

View File

@ -9,6 +9,7 @@
#include "Common/CommonTypes.h"
#include "Common/SymbolDB.h"
#include "Common/Logging/Log.h"
void SymbolDB::List()
{

View File

@ -2,6 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"
#include "Common/Thread.h"