Include <cstring> in search.h
authorMarco Costalba <mcostalba@gmail.com>
Mon, 28 Nov 2011 06:30:31 +0000 (07:30 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Mon, 28 Nov 2011 06:30:31 +0000 (07:30 +0100)
Now we use memset() directly there.

Spotted by Justin Blanchard.

No functional change.

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

src/search.h

index abf7221..84704b0 100644 (file)
 #if !defined(SEARCH_H_INCLUDED)
 #define SEARCH_H_INCLUDED
 
+#include <cstring>
+#include <vector>
+
 #include "move.h"
 #include "types.h"
 
-#include <vector>
-
 class Position;
 struct SplitPoint;