| Index: cc/trees/layer_sorter.cc
|
| diff --git a/cc/trees/layer_sorter.cc b/cc/trees/layer_sorter.cc
|
| index 232f29ff2bab39c0b8bb85acfad6e01134039753..51fa4b670fbe46b3b88918092c5edb1d594fef5a 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.
|
|
|