replace C-style include files with their C++ equivalents

This commit is contained in:
Axel Kohlmeyer
2018-04-27 17:41:04 -04:00
parent d5ec76290b
commit e4071d7f46
1309 changed files with 3075 additions and 3098 deletions

View File

@ -16,7 +16,7 @@
Richard Berger (Temple U)
------------------------------------------------------------------------- */
#include <string.h>
#include <cstring>
#include "info.h"
#include "accelerator_kokkos.h"
#include "atom.h"
@ -43,7 +43,7 @@
#include "update.h"
#include "error.h"
#include <time.h>
#include <ctime>
#include <vector>
#include <string>
#include <algorithm>
@ -51,7 +51,7 @@
#ifdef _WIN32
#define PSAPI_VERSION 1
#include <windows.h>
#include <stdint.h>
#include <cstdint>
#include <psapi.h>
#else
#include <sys/time.h>