forked from lijiext/lammps
some more IWYU tweaks
This commit is contained in:
parent
d6ba95bed6
commit
f541647d44
|
@ -14,7 +14,7 @@
|
|||
#ifndef LMP_FIX_NH_H
|
||||
#define LMP_FIX_NH_H
|
||||
|
||||
#include "fix.h"
|
||||
#include "fix.h" // IWYU pragma: export
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
|
|
|
@ -12,9 +12,11 @@
|
|||
------------------------------------------------------------------------- */
|
||||
|
||||
#include "lammps.h"
|
||||
#include <mpi.h>
|
||||
#include "input.h"
|
||||
|
||||
#include <mpi.h>
|
||||
#include <cstdlib>
|
||||
|
||||
#if defined(LAMMPS_TRAP_FPE) && defined(_GNU_SOURCE)
|
||||
#include <fenv.h>
|
||||
#endif
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#ifndef LMP_MIN_H
|
||||
#define LMP_MIN_H
|
||||
|
||||
#include "pointers.h"
|
||||
#include "pointers.h" // IWYU pragma: export
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#ifndef LMP_NEIGH_LIST_H
|
||||
#define LMP_NEIGH_LIST_H
|
||||
|
||||
#include "pointers.h"
|
||||
#include "pointers.h" // IWYU pragma: export
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
|
|
|
@ -20,8 +20,6 @@
|
|||
#include "memory.h"
|
||||
#include "error.h"
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
using namespace LAMMPS_NS;
|
||||
|
||||
#define MAXLINE 1024 // max line length in dump file
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
*/
|
||||
|
||||
#include "msi2lmp.h"
|
||||
#include "Forcefield.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
|
|
|
@ -151,7 +151,6 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
|
||||
/* global variables */
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
* compatibility with the obsolete LAMMPS version written in Fortran 90.
|
||||
*/
|
||||
|
||||
# include <stdio.h>
|
||||
#include <stdio.h> /* IWYU pragma: export */
|
||||
|
||||
#define MSI2LMP_VERSION "v3.9.9 / 05 Nov 2018"
|
||||
|
||||
|
|
Loading…
Reference in New Issue