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: ea6643334b28
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3a67e13da7ae
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 21, 2020

  1. Copy the full SHA
    8d16256 View commit details
  2. Merge pull request #2686 from pleroy/Clang

    Try to appease the gods of Clang
    pleroy authored Aug 21, 2020
    Copy the full SHA
    3a67e13 View commit details
Showing with 3 additions and 3 deletions.
  1. +1 −1 numerics/poisson_series.hpp
  2. +2 −2 numerics/polynomial.hpp
2 changes: 1 addition & 1 deletion numerics/poisson_series.hpp
Original file line number Diff line number Diff line change
@@ -128,7 +128,7 @@ class PoissonSeries {
template<typename V, int d,
template<typename, typename, int> class E,
typename O>
friend std::string mathematica::ToMathematica(
friend std::string mathematica::internal_mathematica::ToMathematica(
PoissonSeries<V, d, E> const& polynomial,
O express_in);
};
4 changes: 2 additions & 2 deletions numerics/polynomial.hpp
Original file line number Diff line number Diff line change
@@ -179,7 +179,7 @@ class PolynomialInMonomialBasis : public Polynomial<Value, Argument> {
template<typename V, typename A, int d,
template<typename, typename, int> class E,
typename O>
friend std::string mathematica::ToMathematica(
friend std::string mathematica::internal_mathematica::ToMathematica(
PolynomialInMonomialBasis<V, A, d, E> const& polynomial,
O express_in);
};
@@ -287,7 +287,7 @@ class PolynomialInMonomialBasis<Value, Point<Argument>, degree_, Evaluator>
template<typename V, typename A, int d,
template<typename, typename, int> class E,
typename O>
friend std::string mathematica::ToMathematica(
friend std::string mathematica::internal_mathematica::ToMathematica(
PolynomialInMonomialBasis<V, A, d, E> const& polynomial,
O express_in);
};