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

@ -20,10 +20,10 @@ namespace LAMMPS_NS {
class Command : protected Pointers {
public:
Command(class LAMMPS *lmp) : Pointers(lmp) {};
Command(class LAMMPS *lmp) : Pointers(lmp){};
virtual void command(int, char **) = 0;
};
}
} // namespace LAMMPS_NS
#endif