Skip to content

Commit

Permalink
Fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jfriesne committed Sep 16, 2022
1 parent 624f6ef commit 68d1d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion support/MuscleSupport.h
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ template<typename T> inline void muscleSwap(T & t1, T & t2)
#ifdef MUSCLE_AVOID_CPLUSPLUS11
T t(t1); t1 = t2; t2 = t;
#else
std::swap(t1, t2);
std::swap(t1, t2);
#endif
}

Expand Down

0 comments on commit 68d1d33

Please sign in to comment.