make include files independent of previously included headers. include them first in implementation files.

this is to be compliant with upcoming definition of include file policy
This commit is contained in:
Axel Kohlmeyer
2019-07-26 06:03:21 -04:00
parent 52e1755464
commit 47689b4ad3
8 changed files with 7 additions and 6 deletions

View File

@ -53,13 +53,13 @@
/* ----------------------------------------------------------------------
Designed for use with the kim-api-2.0.2 (and newer) package
------------------------------------------------------------------------- */
#include "pair_kim.h"
#include <cstring>
#include <cstdlib>
#include <string>
// includes from LAMMPS
#include "pair_kim.h"
#include "atom.h"
#include "comm.h"
#include "universe.h"