]> git.sesse.net Git - stockfish/blobdiff - src/endgame.h
Get rid of nativeThread
[stockfish] / src / endgame.h
index cd05f0cd1b6273cfa91341d379bc36439d3271d5..f24ac93d44a67e2d3ac286eca0888b205e67e229 100644 (file)
@@ -76,7 +76,7 @@ eg_type = typename std::conditional<(E < SCALING_FUNCTIONS), Value, ScaleFactor>
 template<typename T>
 struct EndgameBase {
 
-  virtual ~EndgameBase() {}
+  virtual ~EndgameBase() = default;
   virtual Color strong_side() const = 0;
   virtual T operator()(const Position&) const = 0;
 };