Unverified Commit 654fec16 authored by Steve Plimpton's avatar Steve Plimpton Committed by GitHub
Browse files

Merge pull request #881 from akohlmey/cplus-plus-style-includes

Replace C-style include files with their C++ equivalents
parents 35294daf ca6f9912
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