Skip to content

Commit

Permalink
Fix include guards
Browse files Browse the repository at this point in the history
  • Loading branch information
dmeybohm committed Oct 29, 2023
1 parent 5214924 commit ec5c114
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions engine/src/logger.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef WISDOM_LOGGER_HPP
#define WISDOM_LOGGER_HPP
#ifndef WISDOM_CHESS_LOGGER_HPP
#define WISDOM_CHESS_LOGGER_HPP

#include "global.hpp"

Expand All @@ -25,4 +25,4 @@ namespace wisdom
auto makeStandardLogger (Logger::LogLevel level = Logger::LogLevel_Debug) -> unique_ptr<Logger>;
}

#endif // WISDOM_LOGGER_HPP
#endif // WISDOM_CHESS_LOGGER_HPP
6 changes: 3 additions & 3 deletions engine/src/move_list.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef WISDOM_MOVE_LIST_HPP
#define WISDOM_MOVE_LIST_HPP
#ifndef WISDOM_CHESS_MOVE_LIST_HPP
#define WISDOM_CHESS_MOVE_LIST_HPP

#include "global.hpp"
#include "move.hpp"
Expand Down Expand Up @@ -224,4 +224,4 @@ namespace wisdom
auto operator<< (std::ostream& os, const MoveList& list) -> std::ostream&;
}

#endif // WISDOM_MOVE_LIST_HPP
#endif // WISDOM_CHESS_MOVE_LIST_HPP
6 changes: 3 additions & 3 deletions engine/src/output_format.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef WISDOM_OUTPUT_FORMAT_HPP
#define WISDOM_OUTPUT_FORMAT_HPP
#ifndef WISDOM_CHESS_OUTPUT_FORMAT_HPP
#define WISDOM_CHESS_OUTPUT_FORMAT_HPP

#include "global.hpp"
#include "piece.hpp"
Expand Down Expand Up @@ -31,4 +31,4 @@ namespace wisdom
}


#endif //WISDOM_OUTPUT_FORMAT_HPP
#endif //WISDOM_CHESS_OUTPUT_FORMAT_HPP

0 comments on commit ec5c114

Please sign in to comment.