We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1d8fe7 commit e96bc9eCopy full SHA for e96bc9e
src/variant.cpp
@@ -296,4 +296,11 @@ std::vector<std::string> VariantMap::get_keys() {
296
return keys;
297
}
298
299
+// Explicit instantiations keep linkers happy in builds that still reference
300
+// VariantPath parsing entry points.
301
+template void VariantMap::parse_istream<true>(std::istream&);
302
+template void VariantMap::parse_istream<false>(std::istream&);
303
+template void VariantMap::parse<true>(const std::string&);
304
+template void VariantMap::parse<false>(const std::string&);
305
+
306
} // namespace Stockfish
0 commit comments