Skip to content

Commit

Permalink
Adds missing header guard. (#557)
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsracz authored Jul 25, 2021
1 parent 488e6f1 commit 0c9e3a9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/utils/Crc.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
* @date 16 Dec 2014
*/

#ifndef _UTILS_CRC_HXX_
#define _UTILS_CRC_HXX_

#include <stdint.h>
#include <stddef.h>

Expand Down Expand Up @@ -186,3 +189,5 @@ private:
/// Current value of the state register for the CRC computation.
uint8_t state_;
};

#endif // _UTILS_CRC_HXX_

0 comments on commit 0c9e3a9

Please sign in to comment.