1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 00:33:09 +00:00

Remove some useless include

Spotted by Rein Halbersma.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba 2011-07-16 22:59:14 +01:00
parent 67686b7684
commit ad1f28bc1c
4 changed files with 2 additions and 3 deletions

View file

@ -25,7 +25,7 @@
#include "move.h"
#include "movegen.h"
#include "search.h"
#include "position.h"
using std::string;

View 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'.

View file

@ -21,7 +21,6 @@
#define MOVEGEN_H_INCLUDED
#include "move.h"
#include "position.h"
enum MoveType {
MV_CAPTURE,

View file

@ -30,7 +30,6 @@
#include "rkiss.h"
#include "thread.h"
#include "tt.h"
#include "ucioption.h"
using std::string;
using std::cout;