Index: src/double.h |
=================================================================== |
--- src/double.h (revision 4110) |
+++ src/double.h (working copy) |
@@ -34,8 +34,8 @@ |
namespace internal { |
// We assume that doubles and uint64_t have the same endianness. |
-static uint64_t double_to_uint64(double d) { return bit_cast<uint64_t>(d); } |
-static double uint64_to_double(uint64_t d64) { return bit_cast<double>(d64); } |
+static uint64_t double_to_uint64(double d) { return BitCast<uint64_t>(d); } |
+static double uint64_to_double(uint64_t d64) { return BitCast<double>(d64); } |
// Helper functions for doubles. |
class Double { |