Remove Boost conditional compilation.

Boost is currently at version 106200 in the depends subsystem
so it is safe to remove code the refers to earlier versions.

This closes #2445
This commit is contained in:
syd
2017-11-23 00:05:21 -05:00
parent df1c3debcc
commit c72a4732cc
3 changed files with 1 additions and 23 deletions

View File

@@ -911,10 +911,6 @@ std::string LicenseInfo()
int GetNumCores()
{
#if BOOST_VERSION >= 105600
return boost::thread::physical_concurrency();
#else // Must fall back to hardware_concurrency, which unfortunately counts virtual cores
return boost::thread::hardware_concurrency();
#endif
}