Commit 8500a197 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

whitespace cleanup

parent 1f17e8eb
Loading
Loading
Loading
Loading
+13 −10
Original line number Diff line number Diff line
@@ -717,7 +717,8 @@ void Dump::sort()
   compare two atom IDs
   called via merge_sort() in sort() method
------------------------------------------------------------------------- */
int Dump::idcompare(const int i, const int j, void *ptr) {
int Dump::idcompare(const int i, const int j, void *ptr)
{
  tagint *idsort = ((Dump *)ptr)->idsort;
  if (idsort[i] < idsort[j]) return -1;
  else if (idsort[i] > idsort[j]) return 1;
@@ -730,7 +731,8 @@ int Dump::idcompare(const int i, const int j, void *ptr) {
   sort in ASCENDing order
------------------------------------------------------------------------- */

int Dump::bufcompare(const int i, const int j, void *ptr) {
int Dump::bufcompare(const int i, const int j, void *ptr)
{
  Dump *dptr = (Dump *) ptr;
  double *bufsort     = dptr->bufsort;
  const int size_one  = dptr->size_one;
@@ -749,7 +751,8 @@ int Dump::bufcompare(const int i, const int j, void *ptr) {
   sort in DESCENDing order
------------------------------------------------------------------------- */

int Dump::bufcompare_reverse(const int i, const int j, void *ptr) {
int Dump::bufcompare_reverse(const int i, const int j, void *ptr)
{
  Dump *dptr = (Dump *) ptr;
  double *bufsort     = dptr->bufsort;
  const int size_one  = dptr->size_one;
+1 −1

File changed.

Contains only whitespace changes.