]> git.sesse.net Git - stockfish/commitdiff
WLDEntryPiece -> WDLEntryPiece for consistency
authorNiklas Fiekas <niklas.fiekas@backscattering.de>
Thu, 5 Oct 2017 09:00:01 +0000 (11:00 +0200)
committerNiklas Fiekas <niklas.fiekas@backscattering.de>
Thu, 5 Oct 2017 09:00:01 +0000 (11:00 +0200)
No functional change.

src/syzygy/tbprobe.cpp

index 4aff3b2da4bfe4d3b5f4f74c57be09d7b614647c..b761b38141b6d6abbe43e1f356859d8719642de2 100644 (file)
@@ -133,16 +133,16 @@ struct Atomic {
     std::atomic_bool ready;
 };
 
     std::atomic_bool ready;
 };
 
-// We define types for the different parts of the WLDEntry and DTZEntry with
+// We define types for the different parts of the WDLEntry and DTZEntry with
 // corresponding specializations for pieces or pawns.
 
 // corresponding specializations for pieces or pawns.
 
-struct WLDEntryPiece {
+struct WDLEntryPiece {
     PairsData* precomp;
 };
 
 struct WDLEntryPawn {
     uint8_t pawnCount[2];     // [Lead color / other color]
     PairsData* precomp;
 };
 
 struct WDLEntryPawn {
     uint8_t pawnCount[2];     // [Lead color / other color]
-    WLDEntryPiece file[2][4]; // [wtm / btm][FILE_A..FILE_D]
+    WDLEntryPiece file[2][4]; // [wtm / btm][FILE_A..FILE_D]
 };
 
 struct DTZEntryPiece {
 };
 
 struct DTZEntryPiece {
@@ -172,7 +172,7 @@ struct WDLEntry : public TBEntry {
     WDLEntry(const std::string& code);
    ~WDLEntry();
     union {
     WDLEntry(const std::string& code);
    ~WDLEntry();
     union {
-        WLDEntryPiece pieceTable[2]; // [wtm / btm]
+        WDLEntryPiece pieceTable[2]; // [wtm / btm]
         WDLEntryPawn  pawnTable;
     };
 };
         WDLEntryPawn  pawnTable;
     };
 };