Use C++ headers instead of C headers (#1179)

Remove some unnecessary includes.

Signed-off-by: Marco Antognini <marco.antognini@arm.com>
This commit is contained in:
Marco Antognini
2021-03-05 14:24:03 +00:00
committed by GitHub
parent 9a481c6167
commit e2fb655e4c
29 changed files with 37 additions and 43 deletions

View File

@@ -14,12 +14,13 @@
// limitations under the License.
//
#include "harness/compat.h"
#include "reference_math.h"
#include <limits.h>
#include "harness/compat.h"
#include <climits>
#if !defined(_WIN32)
#include <string.h>
#include <cstring>
#endif
#include "utility.h"