Unverified Commit 45f80f4f authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

more include file updates found by iwyu

parent 7b8fe97a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@
------------------------------------------------------------------------- */

#include "atom.h"
#include "atom_vec.h"
#include "style_atom.h"  // IWYU pragma: keep

#include "comm.h"
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
#define LMP_BODY_H

#include "pointers.h"
#include "atom_vec_body.h"
#include "atom_vec_body.h"   // IWYU pragma: keep

namespace LAMMPS_NS {

+0 −1
Original line number Diff line number Diff line
@@ -36,7 +36,6 @@

using namespace LAMMPS_NS;
using namespace MathConst;
using namespace std;

#ifdef DBL_EPSILON
  #define MY_EPSILON (10.0*DBL_EPSILON)
+10 −9
Original line number Diff line number Diff line
@@ -13,22 +13,23 @@

#include "compute_pressure.h"

#include <cstring>
#include "angle.h"
#include "atom.h"
#include "update.h"
#include "bond.h"
#include "dihedral.h"
#include "domain.h"
#include "modify.h"
#include "error.h"
#include "fix.h"
#include "force.h"
#include "pair.h"
#include "pair_hybrid.h"
#include "bond.h"
#include "angle.h"
#include "dihedral.h"
#include "improper.h"
#include "kspace.h"
#include "error.h"
#include "modify.h"
#include "pair.h"
#include "pair_hybrid.h"
#include "update.h"

#include <cctype>
#include <cstring>
using namespace LAMMPS_NS;

/* ---------------------------------------------------------------------- */
+2 −1
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@
#include <map>

namespace LAMMPS_NS {
  class Region;

class Domain : protected Pointers {
 public:
@@ -90,7 +91,7 @@ class Domain : protected Pointers {

  int nregion;                             // # of defined Regions
  int maxregion;                           // max # list can hold
  class Region **regions;                  // list of defined Regions
  Region **regions;                        // list of defined Regions

  int copymode;
  enum{NO_REMAP,X_REMAP,V_REMAP};
Loading