Skip to content

Commit

Permalink
Apply clang format patch
Browse files Browse the repository at this point in the history
Refs #11056
  • Loading branch information
martyngigg committed Jan 6, 2016
1 parent 522212d commit 94f8a3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class MANTID_GEOMETRY_DLL MDHistoDimensionBuilder {
template <typename CoordT>
static void resizeToFitMDBox(CoordT &min, CoordT &max) {
// Always use minimum float value as DBL_EPS is always too small
static constexpr CoordT twoEps = 2*std::numeric_limits<float>::epsilon();
static constexpr CoordT twoEps = 2 * std::numeric_limits<float>::epsilon();
if (std::fabs(min) > twoEps)
min *= (1 + twoEps);
else
Expand Down

0 comments on commit 94f8a3d

Please sign in to comment.