Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also 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: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b16a892e0aba
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8cd2e3d72723
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jul 6, 2020

  1. Copy the full SHA
    b7d4d40 View commit details
  2. Merge pull request #2629 from pleroy/VS16_6_3

    Compatibility with Visual Studio 16.6.3
    pleroy authored Jul 6, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8cd2e3d View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 base/base32768_test.cpp
7 changes: 4 additions & 3 deletions base/base32768_test.cpp
Original file line number Diff line number Diff line change
@@ -55,9 +55,10 @@ class Base32768Test : public testing::Test {
std::char_traits<char16_t>::compare(
output.data.get(), base32768.data, base32768.size));
for (int i = 0; i < base32768.size; ++i) {
EXPECT_EQ(output.data[i], base32768.data[i])
<< "index=" << i << " actual=" << std::hex << output.data[i]
<< " expected=" << base32768.data[i];
EXPECT_TRUE(output.data[i] == base32768.data[i])
<< "index=" << i << " actual=" << std::hex
<< static_cast<int>(output.data[i])
<< " expected=" << static_cast<int>(base32768.data[i]);
}
}