Get rid of nativeThread

No functional change.
This commit is contained in:
Marco Costalba
2015-03-21 11:50:14 +01:00
parent 26dabb1e6b
commit be77406a55
4 changed files with 8 additions and 9 deletions
+1 -1
View 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;
};