[test_problems] Remove checks for legacy VS versions

_MSC_VER < 1900 corresponds to 1800 and earlier, which is
VC++ version 12.0 (Visual Studio 2013). Cantera now uses the C++17
standard, with the current minimum requirement VC++ version 14.1
(Visual Studio 2017).
This commit is contained in:
Ingmar Schoegl
2023-03-10 07:04:53 -06:00
parent df5fa549ff
commit 5cd3d8a29a
15 changed files with 0 additions and 45 deletions

View File

@@ -39,9 +39,6 @@ static double cutoff(double val, double atol=1.0E-15)
int main(int argc, char** argv)
{
#if defined(_MSC_VER) && _MSC_VER < 1900
_set_output_format(_TWO_DIGIT_EXPONENT);
#endif
try {
auto sol = newSolution("gri30.yaml", "gri30", "Multi");
auto gas = sol->thermo();