apply clang-format to all headers with some exceptions
This commit is contained in:
@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user