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

Commits on Sep 22, 2020

  1. Fix a problem found by Clang.

    pleroy committed Sep 22, 2020
    Copy the full SHA
    098b68c View commit details
  2. Merge pull request #2729 from pleroy/Clang

    Fix a problem found by Clang
    pleroy authored Sep 22, 2020
    Copy the full SHA
    a763a71 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 numerics/frequency_analysis_body.hpp
2 changes: 1 addition & 1 deletion numerics/frequency_analysis_body.hpp
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ AngularFrequency PreciseMode(
PoissonSeries<typename Hilbert<Value>::NormalizedType, 0, Evaluator>;

auto amplitude = [&dot, &function, &weight](AngularFrequency const& ω) {
constexpr int dimension = typename Hilbert<Value>::dimension;
constexpr int dimension = Hilbert<Value>::dimension;
Instant const& t0 = weight.origin();
std::array<Degree0, 2 * dimension> const basis =
PoissonSeriesBasisGenerator<Degree0, dimension>::Basis(ω, t0);