Commit 5cb24632 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

c++ style include files do not have a .h extension

parent 0ca02b6f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -11,8 +11,8 @@
   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#include <cstdlib.h>
#include <cstring.h>
#include <cstdlib>
#include <cstring>
#include "fix_event_hyper.h"
#include "atom.h"
#include "update.h"
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#include <cstring.h>
#include <cstring>
#include "fix_hyper.h"

using namespace LAMMPS_NS;
+3 −3
Original line number Diff line number Diff line
@@ -12,9 +12,9 @@
------------------------------------------------------------------------- */

#include <mpi.h>
#include <cmath.h>
#include <cstdio.h>
#include <cstring.h>
#include <cmath>
#include <cstdio>
#include <cstring>
#include "fix_hyper_global.h"
#include "atom.h"
#include "update.h"
+3 −3
Original line number Diff line number Diff line
@@ -12,9 +12,9 @@
------------------------------------------------------------------------- */

#include <mpi.h>
#include <cmath.h>
#include <cstdio.h>
#include <cstring.h>
#include <cmath>
#include <cstdio>
#include <cstring>
#include "fix_hyper_local.h"
#include "atom.h"
#include "update.h"
+3 −3
Original line number Diff line number Diff line
@@ -11,9 +11,9 @@
   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#include <cmath.h>
#include <cstdlib.h>
#include <cstring.h>
#include <cmath>
#include <cstdlib>
#include <cstring>
#include "hyper.h"
#include "update.h"
#include "atom.h"