Include dependent headers harder
Prepares for changing some includes in StdString.h
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
#include <unordered_set>
|
#include <unordered_set>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
#include "global.h"
|
||||||
|
|
||||||
/** @brief Constants for working with the RageFileManager. */
|
/** @brief Constants for working with the RageFileManager. */
|
||||||
namespace RageFileManagerUtil
|
namespace RageFileManagerUtil
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
#include "RageThreads.h"
|
#include "RageThreads.h"
|
||||||
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
#include <cstdarg>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <cerrno>
|
#include <cerrno>
|
||||||
|
#include <cstdarg>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|||||||
+1
-1
@@ -5,10 +5,10 @@
|
|||||||
|
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
|
|
||||||
#include <algorithm>
|
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
#include <cstring>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <random>
|
#include <random>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|||||||
@@ -3,6 +3,8 @@
|
|||||||
#ifndef RAGE_UTIL_CIRCULAR_BUFFER
|
#ifndef RAGE_UTIL_CIRCULAR_BUFFER
|
||||||
#define RAGE_UTIL_CIRCULAR_BUFFER
|
#define RAGE_UTIL_CIRCULAR_BUFFER
|
||||||
|
|
||||||
|
#include <cstring>
|
||||||
|
|
||||||
/* Lock-free circular buffer. This should be threadsafe if one thread is reading
|
/* Lock-free circular buffer. This should be threadsafe if one thread is reading
|
||||||
* and another is writing. */
|
* and another is writing. */
|
||||||
template<class T>
|
template<class T>
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
#ifndef DIALOG_BOX_H
|
#ifndef DIALOG_BOX_H
|
||||||
#define DIALOG_BOX_H
|
#define DIALOG_BOX_H
|
||||||
|
|
||||||
|
#include "global.h"
|
||||||
|
|
||||||
namespace Dialog
|
namespace Dialog
|
||||||
{
|
{
|
||||||
/* ID can be used to identify a class of messages, for "don't display this
|
/* ID can be used to identify a class of messages, for "don't display this
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
#include <cstring>
|
||||||
#if defined(HAVE_UNISTD_H)
|
#if defined(HAVE_UNISTD_H)
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
#include "CrashHandlerInternal.h"
|
#include "CrashHandlerInternal.h"
|
||||||
|
|
||||||
#include <csignal>
|
#include <csignal>
|
||||||
|
#include <cstring>
|
||||||
|
|
||||||
const char *itoa( unsigned n )
|
const char *itoa( unsigned n )
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <cerrno>
|
#include <cerrno>
|
||||||
|
#include <cstring>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user