Skip to content

Commit

Permalink
Add missing include guards. (#714)
Browse files Browse the repository at this point in the history
  • Loading branch information
bakerstu authored May 14, 2023
1 parent 00171fb commit 3092f0e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/utils/Ewma.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
* @date 2 May 2015
*/

#ifndef _UTILS_EWMA_HXX_
#define _UTILS_EWMA_HXX_

#include <time.h>
#include <stdint.h>

Expand Down Expand Up @@ -178,3 +181,5 @@ public:
float alpha_; ///< coefficient for EWMA
float avg_{0.0}; ///< current state of EWMA
};

#endif // _UTILS_EWMA_HXX_

0 comments on commit 3092f0e

Please sign in to comment.