]> git.sesse.net Git - stockfish/blobdiff - src/pawns.h
Add Stockfish namespace.
[stockfish] / src / pawns.h
index 888bf9900f42e2cbceb00342525a8b97cc5e03dc..124619d66a0c20805fa5d5d3f328f6167d0b6943 100644 (file)
@@ -23,7 +23,7 @@
 #include "position.h"
 #include "types.h"
 
-namespace Pawns {
+namespace Stockfish::Pawns {
 
 /// Pawns::Entry contains various information about a pawn structure. A lookup
 /// to the pawn hash table (performed by calling the probe function) returns a
@@ -65,6 +65,6 @@ typedef HashTable<Entry, 131072> Table;
 
 Entry* probe(const Position& pos);
 
-} // namespace Pawns
+} // namespace Stockfish::Pawns
 
 #endif // #ifndef PAWNS_H_INCLUDED