Skip to content

Commit

Permalink
Fix const inconsistency with dt method that caused problems in bindin…
Browse files Browse the repository at this point in the history
…g code
  • Loading branch information
pavlis committed Feb 4, 2025
1 parent 24ba0e8 commit bbf15ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class MTPowerSpectrumEngine {
length.*/
int fftsize() const { return nfft; };
/*! Retrieve the internally cached required data sample interval. */
double dt() { return operator_dt; };
double dt() const { return operator_dt; };
/*! \brief Putter equivalent of df.
The computation of the Rayleigh bin size is complicated a bit by the folding
Expand Down

0 comments on commit bbf15ec

Please sign in to comment.