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

Commits on Mar 30, 2020

  1. Fix a bad name.

    pleroy committed Mar 30, 2020
    Copy the full SHA
    c7e7567 View commit details
  2. Merge pull request #2514 from pleroy/Constexpr

    Fix a bad name that somehow MSVC is willing to resolve
    pleroy authored Mar 30, 2020
    Copy the full SHA
    1e88efa View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 quantities/quantities_body.hpp
2 changes: 1 addition & 1 deletion quantities/quantities_body.hpp
Original file line number Diff line number Diff line change
@@ -210,7 +210,7 @@ inline std::string DebugString(double const number, int const precision) {

template<typename D>
std::string DebugString(Quantity<D> const& quantity, int const precision) {
return DebugString(quantity / si::Unit<Quantity<D>>, precision) + " " +
return DebugString(quantity / SIUnit<Quantity<D>>(), precision) + " " +
Format<D>();
}