Common: Move remaining C header includes over to their C++ equivalent

This commit is contained in:
Lioncash 2014-08-17 13:54:06 -04:00
parent 90e994471a
commit da6f24b374
8 changed files with 20 additions and 21 deletions

View File

@ -2,15 +2,15 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include <algorithm> // min
#include <string> // System: To be able to add strings with "+"
#include <stdio.h>
#include <math.h>
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <string>
#ifdef _WIN32
#include <windows.h>
#include <array>
#else
#include <stdarg.h>
#include <cstdarg>
#endif
#include "common/common.h"

View File

@ -13,9 +13,8 @@
// --------------------------------------------------------------------------------------
#if defined(WIN32)
#include <cstdio>
#include <windows.h>
#include <stdio.h>
#include "common/extended_trace.h"
#include "common/string_util.h"
using namespace std;

View File

@ -16,11 +16,11 @@
#include <io.h>
#include <direct.h> // getcwd
#else
#include <cerrno>
#include <cstdlib>
#include <sys/param.h>
#include <sys/types.h>
#include <dirent.h>
#include <errno.h>
#include <stdlib.h>
#endif
#if defined(__APPLE__)

View File

@ -11,8 +11,8 @@
#include <windows.h>
#include <psapi.h>
#else
#include <errno.h>
#include <stdio.h>
#include <cerrno>
#include <cstdio>
#endif
#if !defined(_WIN32) && defined(__x86_64__) && !defined(MAP_32BIT)

View File

@ -2,7 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include <stdio.h> // System
#include <cstdio>
#include "common/common.h" // Local
#include "common/string_util.h"

View File

@ -2,9 +2,9 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include <stdlib.h>
#include <stdio.h>
#include <algorithm>
#include <cstdlib>
#include <cstdio>
#include "common/common.h"
#include "common/common_paths.h"
@ -13,8 +13,8 @@
#ifdef _WIN32
#include <Windows.h>
#else
#include <cerrno>
#include <iconv.h>
#include <errno.h>
#endif
/// Make a string lowercase

View File

@ -10,8 +10,8 @@
// Don't include common.h here as it will break LogManager
#include "common/common_types.h"
#include <stdio.h>
#include <string.h>
#include <cstdio>
#include <cstring>
// This may not be defined outside _WIN32
#ifndef _WIN32

View File

@ -18,10 +18,10 @@
#undef max
#endif
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <cstdarg>
#include <algorithm>
#include <string>