diff options
| author | Adam <adammegarules1@gmail.com> | 2026-07-26 15:12:10 +0200 |
|---|---|---|
| committer | Adam <adammegarules1@gmail.com> | 2026-07-26 15:12:10 +0200 |
| commit | e0cfca5590c2a41b5c4c0b269edeefca6041eb69 (patch) | |
| tree | 6c5dd9b5425cd3afdd0e24193191f6f8379718cc /src | |
| parent | 9d0e3c02d751f71dd4f2103b0e1697438b919434 (diff) | |
adding namespace to header fen.hpp
Diffstat (limited to 'src')
| -rw-r--r-- | src/fen.hpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/fen.hpp b/src/fen.hpp index c1a723e..55d47ae 100644 --- a/src/fen.hpp +++ b/src/fen.hpp @@ -1,7 +1,11 @@ #ifndef SRC_BOARD_H_ #define SRC_BOARD_H_ -#include "board.hpp" #include <string> -void setBoardFen(std::string fen, board *b); + +#include "board.hpp" + +using namespace std; + +void setBoardFen(string fen, board *b); #endif /* SRC_BOARD_H_ */ |
