Unverified Commit f541647d authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

some more IWYU tweaks

parent d6ba95be
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 {

+3 −1
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
#ifndef LMP_MIN_H
#define LMP_MIN_H

#include "pointers.h"
#include "pointers.h"           // IWYU pragma: export

namespace LAMMPS_NS {

+1 −1
Original line number Diff line number Diff line
@@ -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 {

+0 −2
Original line number Diff line number Diff line
@@ -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
Loading