diff options
author | Mark Mentovai <mark@chromium.org> | 2015-11-12 15:01:06 (GMT) |
---|---|---|
committer | Mark Mentovai <mark@chromium.org> | 2015-11-12 15:01:06 (GMT) |
commit | 4a8e54401e497794054defc49fde7b208a8c8fab (patch) | |
tree | 08d640201050f89be79950d65071bcac4aa43040 /googlemock/test | |
parent | cfe466a0a75333a1c12baa99c172b9036fc5ccf1 (diff) | |
download | googletest-4a8e54401e497794054defc49fde7b208a8c8fab.zip googletest-4a8e54401e497794054defc49fde7b208a8c8fab.tar.gz googletest-4a8e54401e497794054defc49fde7b208a8c8fab.tar.bz2 |
Name the helper AsBits()refs/pull/627/head
Diffstat (limited to 'googlemock/test')
-rw-r--r-- | googlemock/test/gmock-matchers_test.cc | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/googlemock/test/gmock-matchers_test.cc b/googlemock/test/gmock-matchers_test.cc index 323ab25..78c4c90 100644 --- a/googlemock/test/gmock-matchers_test.cc +++ b/googlemock/test/gmock-matchers_test.cc @@ -2708,19 +2708,18 @@ class FloatingPointTest : public testing::Test { zero_bits_(Floating(0).bits()), one_bits_(Floating(1).bits()), infinity_bits_(Floating(Floating::Infinity()).bits()), - close_to_positive_zero_(ReinterpretBits(zero_bits_ + max_ulps_/2)), - close_to_negative_zero_(ReinterpretBits( - zero_bits_ + max_ulps_ - max_ulps_/2)), - further_from_negative_zero_(-ReinterpretBits( + close_to_positive_zero_(AsBits(zero_bits_ + max_ulps_/2)), + close_to_negative_zero_(AsBits(zero_bits_ + max_ulps_ - max_ulps_/2)), + further_from_negative_zero_(-AsBits( zero_bits_ + max_ulps_ + 1 - max_ulps_/2)), - close_to_one_(ReinterpretBits(one_bits_ + max_ulps_)), - further_from_one_(ReinterpretBits(one_bits_ + max_ulps_ + 1)), + close_to_one_(AsBits(one_bits_ + max_ulps_)), + further_from_one_(AsBits(one_bits_ + max_ulps_ + 1)), infinity_(Floating::Infinity()), - close_to_infinity_(ReinterpretBits(infinity_bits_ - max_ulps_)), - further_from_infinity_(ReinterpretBits(infinity_bits_ - max_ulps_ - 1)), + close_to_infinity_(AsBits(infinity_bits_ - max_ulps_)), + further_from_infinity_(AsBits(infinity_bits_ - max_ulps_ - 1)), max_(Floating::Max()), - nan1_(Floating::ReinterpretBits(Floating::kExponentBitMask | 1)), - nan2_(Floating::ReinterpretBits(Floating::kExponentBitMask | 200)) { + nan1_(AsBits(Floating::kExponentBitMask | 1)), + nan2_(AsBits(Floating::kExponentBitMask | 200)) { } void TestSize() { @@ -2804,7 +2803,7 @@ class FloatingPointTest : public testing::Test { private: template <typename T> - static RawType ReinterpretBits(T value) { + static RawType AsBits(T value) { return Floating::ReinterpretBits(static_cast<Bits>(value)); } }; |