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

@ -26,7 +26,7 @@ namespace LAMMPS_NS {
class DumpXYZ : public Dump {
public:
DumpXYZ(class LAMMPS *, int, char**);
DumpXYZ(class LAMMPS *, int, char **);
virtual ~DumpXYZ();
protected:
@ -41,12 +41,12 @@ class DumpXYZ : public Dump {
int modify_param(int, char **);
typedef void (DumpXYZ::*FnPtrWrite)(int, double *);
FnPtrWrite write_choice; // ptr to write data functions
FnPtrWrite write_choice; // ptr to write data functions
void write_string(int, double *);
void write_lines(int, double *);
};
}
} // namespace LAMMPS_NS
#endif
#endif