]> git.sesse.net Git - stockfish/blobdiff - src/movegen.h
Fix a (silly) warning under icc compiler
[stockfish] / src / movegen.h
index fdac5d0ba00856ac489b66220d3164fb0f3a005e..a80db334cbef6e9c1ba4e92e802588168ee4601b 100644 (file)
@@ -21,7 +21,6 @@
 #define MOVEGEN_H_INCLUDED
 
 #include "move.h"
-#include "position.h"
 
 enum MoveType {
   MV_CAPTURE,
@@ -36,6 +35,8 @@ enum MoveType {
 template<MoveType>
 MoveStack* generate(const Position& pos, MoveStack* mlist);
 
+/// The MoveList struct is a simple wrapper around generate(), sometimes comes
+/// handy to use this class instead of the low level generate() function.
 template<MoveType T>
 struct MoveList {