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

@ -32,22 +32,22 @@ class WriteRestart : public Command {
void write(std::string);
private:
int me,nprocs;
int me, nprocs;
FILE *fp;
bigint natoms; // natoms (sum of nlocal) to write into file
bigint natoms; // natoms (sum of nlocal) to write into file
int noinit;
int multiproc; // 0 = proc 0 writes for all
// else # of procs writing files
int nclusterprocs; // # of procs in my cluster that write to one file
int filewriter; // 1 if this proc writes a file, else 0
int fileproc; // ID of proc in my cluster who writes to file
int icluster; // which cluster I am in
int multiproc; // 0 = proc 0 writes for all
// else # of procs writing files
int nclusterprocs; // # of procs in my cluster that write to one file
int filewriter; // 1 if this proc writes a file, else 0
int fileproc; // ID of proc in my cluster who writes to file
int icluster; // which cluster I am in
// MPI-IO values
int mpiioflag; // 1 for MPIIO output, else 0
class RestartMPIIO *mpiio; // MPIIO for restart file output
int mpiioflag; // 1 for MPIIO output, else 0
class RestartMPIIO *mpiio; // MPIIO for restart file output
MPI_Offset headerOffset;
void header();
@ -67,7 +67,7 @@ class WriteRestart : public Command {
void write_double_vec(int, int, double *);
};
}
} // namespace LAMMPS_NS
#endif
#endif