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: 0596c8fbdb2a
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2c57f19d8981
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 12, 2020

  1. Add the word "template".

    pleroy committed Jan 12, 2020
    Copy the full SHA
    85063f5 View commit details
  2. Merge pull request #2439 from pleroy/Clang

    Add the word "template" in a few places
    pleroy authored Jan 12, 2020
    Copy the full SHA
    2c57f19 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 geometry/signature_test.cpp
6 changes: 3 additions & 3 deletions geometry/signature_test.cpp
Original file line number Diff line number Diff line change
@@ -83,11 +83,11 @@ TEST_F(SignatureTest, Forget) {
DeduceSignReversingOrientation{})}};
auto const test_forget_for = [this](auto const& signatures) {
for (auto const& signature : signatures) {
EXPECT_THAT(signature.Forget<OrthogonalMap>()(vector_),
EXPECT_THAT(signature.template Forget<OrthogonalMap>()(vector_),
Eq(signature(vector_))) << signature;
EXPECT_THAT(signature.Forget<OrthogonalMap>()(bivector_),
EXPECT_THAT(signature.template Forget<OrthogonalMap>()(bivector_),
Eq(signature(bivector_))) << signature;
EXPECT_THAT(signature.Forget<OrthogonalMap>()(trivector_),
EXPECT_THAT(signature.template Forget<OrthogonalMap>()(trivector_),
Eq(signature(trivector_))) << signature;
}
};