File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ class Position {
204204 bool chess960;
205205};
206206
207- extern std::ostream& operator <<(std::ostream& os, const Position& pos);
207+ std::ostream& operator <<(std::ostream& os, const Position& pos);
208208
209209inline Color Position::side_to_move () const {
210210 return sideToMove;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ namespace Stockfish::PSQT
3030extern Score psq[PIECE_NB][SQUARE_NB];
3131
3232// Fill psqt array from a set of internally linked parameters
33- extern void init ();
33+ void init ();
3434
3535} // namespace Stockfish::PSQT
3636
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ using namespace std;
3636
3737namespace Stockfish {
3838
39- extern vector<string> setup_bench (const Position&, istream&);
39+ vector<string> setup_bench (const Position&, istream&);
4040
4141namespace {
4242
You can’t perform that action at this time.
0 commit comments