Skip to content

Commit

Permalink
Fixed #ifndef issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Gramescu committed Nov 24, 2023
1 parent 585ba47 commit 6fdbb3b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lib/APPEndlessRun/ColorState.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
* @{
*/

#ifndef STARTUP_STATE_H
#define STARTUP_STATE_H
#ifndef COLOR_STATE_H
#define COLOR_STATE_H

/******************************************************************************
* Compile Switches
Expand Down Expand Up @@ -116,7 +116,8 @@ class ColorState : public IState
/**
* Default constructor.
*/
ColorState() : m_tlcId(COLOR_ID_IDLE)
ColorState() :
m_tlcId(COLOR_ID_IDLE)
{
}

Expand All @@ -136,5 +137,5 @@ class ColorState : public IState
* Functions
*****************************************************************************/

#endif /* STARTUP_STATE_H */
#endif /* COLOR_STATE_H */
/** @} */

0 comments on commit 6fdbb3b

Please sign in to comment.