Commit e4071d7f authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

replace C-style include files with their C++ equivalents

parent d5ec7629
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
------------------------------------------------------------------------- */

#include <mpi.h>
#include <string.h>
#include <cstring>
#include "compute_temp_asphere.h"
#include "math_extra.h"
#include "atom.h"
+3 −3
Original line number Diff line number Diff line
@@ -15,9 +15,9 @@
   Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */

#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include "math_extra.h"
#include "fix_nh_asphere.h"
#include "atom.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 <string.h>
#include <cstring>
#include "fix_nph_asphere.h"
#include "modify.h"
#include "error.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 <string.h>
#include <cstring>
#include "fix_npt_asphere.h"
#include "modify.h"
#include "error.h"
+3 −3
Original line number Diff line number Diff line
@@ -15,9 +15,9 @@
   Contributing author: Mike Brown (SNL)
------------------------------------------------------------------------- */

#include <math.h>
#include <stdio.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstring>
#include "fix_nve_asphere.h"
#include "math_extra.h"
#include "atom.h"
Loading