X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmaterial.cpp;h=ef7428a3a989586ceb87dfa32ce082aa08712f93;hb=fecefbb99cb0147f37d6895765a315f34c935786;hp=48cac56157d7038b4009bf723b8b441a93496573;hpb=c9d7e99de682516c560009b550c41da9ae2008b8;p=stockfish diff --git a/src/material.cpp b/src/material.cpp index 48cac561..ef7428a3 100644 --- a/src/material.cpp +++ b/src/material.cpp @@ -85,7 +85,7 @@ namespace { /// MaterialInfoTable c'tor and d'tor allocate and free the space for Endgames -MaterialInfoTable::MaterialInfoTable() { funcs = new Endgames(); } +void MaterialInfoTable::init() { Base::init(); funcs = new Endgames(); } MaterialInfoTable::~MaterialInfoTable() { delete funcs; }