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

Commits on Jan 12, 2020

  1. They keep coming.

    pleroy committed Jan 12, 2020
    Copy the full SHA
    9a508d0 View commit details
  2. Copy the full SHA
    24d0764 View commit details
  3. Merge pull request #2444 from pleroy/Clang

    The templates keep coming
    pleroy authored Jan 12, 2020
    Copy the full SHA
    36848e1 View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 physics/inertia_tensor_test.cpp
3 changes: 2 additions & 1 deletion physics/inertia_tensor_test.cpp
Original file line number Diff line number Diff line change
@@ -82,7 +82,8 @@ class InertiaTensorTest : public ::testing::Test {
Matcher<R3Element<MomentOfInertia>> const& matcher) {
using PrincipalAxesFrame =
geometry::Frame<enum class PrincipalAxesFrameTag>;
auto const principal_axes = tensor.Diagonalize<PrincipalAxesFrame>();
auto const principal_axes =
tensor.template Diagonalize<PrincipalAxesFrame>();
EXPECT_THAT(principal_axes.moments_of_inertia, matcher);
}