Skip to content

Commit

Permalink
More code style updates
Browse files Browse the repository at this point in the history
  • Loading branch information
adamstark committed May 10, 2016
1 parent fe9a79b commit d1ef476
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 106 deletions.
4 changes: 2 additions & 2 deletions src/BTrack.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@ class BTrack {
int FFTLengthForACFCalculation; /**< the FFT length for the auto-correlation function calculation */
fftw_plan acfForwardFFT; /**< forward fftw plan for calculating auto-correlation function */
fftw_plan acfBackwardFFT; /**< inverse fftw plan for calculating auto-correlation function */
fftw_complex *complexIn; /**< to hold complex fft values for input */
fftw_complex *complexOut; /**< to hold complex fft values for output */
fftw_complex* complexIn; /**< to hold complex fft values for input */
fftw_complex* complexOut; /**< to hold complex fft values for output */

};

Expand Down
4 changes: 2 additions & 2 deletions src/CircularBuffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class CircularBuffer
{
public:
CircularBuffer() : writeIndex(0)
CircularBuffer() : writeIndex (0)
{

}
Expand All @@ -33,7 +33,7 @@ class CircularBuffer

void resize(int size)
{
buffer.resize(size);
buffer.resize (size);
writeIndex = 0;
}

Expand Down
Loading

0 comments on commit d1ef476

Please sign in to comment.