refactor(Core): apply clang-tidy modernize-deprecated-headers (#3821)

This commit is contained in:
Francesco Borzì
2020-12-12 17:33:07 +01:00
committed by GitHub
parent 7d16417d16
commit 7bb42c1d56
13 changed files with 34 additions and 34 deletions

View File

@@ -13,12 +13,12 @@
#include "Define.h"
#include <algorithm>
#include <cmath>
#include <cstring>
#include <limits>
#include <stdexcept>
#include <vector>
#include <algorithm>
#include <limits>
#include <cmath>
#include "string.h"
#define MAX_STACK_SIZE 64

View File

@@ -49,16 +49,16 @@
#include "Define.h"
#include <cassert>
#include <cerrno>
#include <cmath>
#include <csignal>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <unordered_map>
#include <unordered_set>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <math.h>
#include <errno.h>
#include <signal.h>
#include <assert.h>
#if AC_PLATFORM == AC_PLATFORM_WINDOWS
#define STRCASECMP stricmp

View File

@@ -7,11 +7,11 @@
#ifndef LOCKEDQUEUE_H
#define LOCKEDQUEUE_H
#include "Debugging/Errors.h"
#include <ace/Guard_T.h>
#include <ace/Thread_Mutex.h>
#include <cassert>
#include <deque>
#include <assert.h>
#include "Debugging/Errors.h"
namespace ACE_Based
{