// Copyright 2017 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_UTILS_BOXED_FLOAT_H_ #define V8_UTILS_BOXED_FLOAT_H_ #include <cmath> #include "src/base/functional.h" #include "src/base/macros.h" #include "src/base/numbers/double.h" #include "src/common/globals.h" namespace v8 { internal // namespace internal namespace base { inline size_t hash_value(const i::Float64& f64) { … } } // namespace base } // namespace v8 #endif // V8_UTILS_BOXED_FLOAT_H_