apply clang-format to all headers with some exceptions

This commit is contained in:
Axel Kohlmeyer
2021-05-14 19:16:07 -04:00
parent 60e41a90c2
commit 7fcd449864
1651 changed files with 15108 additions and 15948 deletions

View File

@ -14,8 +14,8 @@
#ifndef LMP_PYTHON_IMPL_H
#define LMP_PYTHON_IMPL_H
#include "pointers.h"
#include "lmppython.h"
#include "pointers.h"
namespace LAMMPS_NS {
@ -35,15 +35,15 @@ class PythonImpl : protected Pointers, public PythonInterface {
bool has_minimum_version(int major, int minor);
private:
int ninput,noutput,length_longstr;
int ninput, noutput, length_longstr;
char **istr;
char *ostr,*format;
char *ostr, *format;
void *pyMain;
struct PyFunc {
char *name;
int ninput,noutput;
int *itype,*ivarflag;
int ninput, noutput;
int *itype, *ivarflag;
int *ivalue;
double *dvalue;
char **svalue;
@ -61,7 +61,7 @@ class PythonImpl : protected Pointers, public PythonInterface {
void deallocate(int);
};
}
} // namespace LAMMPS_NS
#endif