diff options
author | misterg <misterg@google.com> | 2019-10-18 11:06:41 -0400 |
---|---|---|
committer | Andy Soffer <asoffer@google.com> | 2019-10-18 11:34:08 -0400 |
commit | f966ed158177f2ed6ff2c402effb16f7f00ca40b (patch) | |
tree | b371f81cfe93dcca39eb876b9e7f53c53eeb0046 /googlemock/docs | |
parent | 1f9edcd9698162b48d94e1ef2e6a2ab7ab4e6c56 (diff) | |
download | googletest-f966ed158177f2ed6ff2c402effb16f7f00ca40b.tar.gz googletest-f966ed158177f2ed6ff2c402effb16f7f00ca40b.tar.bz2 googletest-f966ed158177f2ed6ff2c402effb16f7f00ca40b.zip |
Googletest export
Added IsNan matcher
PiperOrigin-RevId: 275473218
Diffstat (limited to 'googlemock/docs')
-rw-r--r-- | googlemock/docs/cheat_sheet.md | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/googlemock/docs/cheat_sheet.md b/googlemock/docs/cheat_sheet.md index 3236e6a9..8ec5ea08 100644 --- a/googlemock/docs/cheat_sheet.md +++ b/googlemock/docs/cheat_sheet.md @@ -287,7 +287,6 @@ is not changed afterwards, or the meaning of your matcher will be changed. | `FloatEq(a_float)` | `argument` is a `float` value approximately equal to `a_float`, treating two NaNs as unequal. | | `NanSensitiveDoubleEq(a_double)` | `argument` is a `double` value approximately equal to `a_double`, treating two NaNs as equal. | | `NanSensitiveFloatEq(a_float)` | `argument` is a `float` value approximately equal to `a_float`, treating two NaNs as equal. | -| `IsNan()` | `argument` is any floating-point type with a NaN value. | <!-- mdformat on --> The above matchers use ULP-based comparison (the same as used in googletest). |