Remove some useless include
authorMarco Costalba <mcostalba@gmail.com>
Sat, 16 Jul 2011 21:59:14 +0000 (22:59 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Sat, 16 Jul 2011 21:59:14 +0000 (22:59 +0100)
Spotted by Rein Halbersma.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>

src/move.cpp
src/movegen.cpp
src/movegen.h
src/position.cpp

index c45e1c2..8cc0c00 100644 (file)
@@ -25,7 +25,7 @@
 
 #include "move.h"
 #include "movegen.h"
-#include "search.h"
+#include "position.h"
 
 using std::string;
 
index 36ff3d8..90d0135 100644 (file)
@@ -21,6 +21,7 @@
 
 #include "bitcount.h"
 #include "movegen.h"
+#include "position.h"
 
 // Simple macro to wrap a very common while loop, no facny, no flexibility,
 // hardcoded list name 'mlist' and from square 'from'.
index 0c781a6..a80db33 100644 (file)
@@ -21,7 +21,6 @@
 #define MOVEGEN_H_INCLUDED
 
 #include "move.h"
-#include "position.h"
 
 enum MoveType {
   MV_CAPTURE,
index f4f0db7..18f4978 100644 (file)
@@ -30,7 +30,6 @@
 #include "rkiss.h"
 #include "thread.h"
 #include "tt.h"
-#include "ucioption.h"
 
 using std::string;
 using std::cout;