diff options
Diffstat (limited to 'cc/trees/layer_sorter.cc')
-rw-r--r-- | cc/trees/layer_sorter.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/trees/layer_sorter.cc b/cc/trees/layer_sorter.cc index 232f29f..51fa4b6 100644 --- a/cc/trees/layer_sorter.cc +++ b/cc/trees/layer_sorter.cc @@ -70,7 +70,7 @@ LayerSorter::LayerSorter() LayerSorter::~LayerSorter() {} -static float const CheckFloatingPointNumericAccuracy(float a, float b) { +static float CheckFloatingPointNumericAccuracy(float a, float b) { float abs_dif = std::abs(b - a); float abs_max = std::max(std::abs(b), std::abs(a)); // Check to see if we've got a result with a reasonable amount of error. |