Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fmtlib/fmt
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 33bf8b1860f0aec6cb7fe8d6ca60a3b33109a0bc
Choose a base ref
..
head repository: fmtlib/fmt
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0a3b7bcb10b25c938f951c6313efb37dfe37af27
Choose a head ref
Showing with 1 addition and 2 deletions.
  1. +1 −2 test/format-test.cc
3 changes: 1 addition & 2 deletions test/format-test.cc
Original file line number Diff line number Diff line change
@@ -1338,8 +1338,7 @@ TEST(FormatterTest, FormatBin) {
static_cast<__int128_t>((static_cast<__uint128_t>(1) << ((__SIZEOF_INT128__ * CHAR_BIT) - 1)) - 1)
#define INT128_MIN (-INT128_MAX - 1)

#define UINT128_MAX \
((static_cast<__uint128_t>(1) << (__SIZEOF_INT128__ * CHAR_BIT)) - 1)
#define UINT128_MAX (~static_cast<__uint128_t>(0))
#endif

TEST(FormatterTest, FormatDec) {