Fix a typo in an OpenMP test

This fixes the typo and corrects the default OpenMP version being
tested.
This commit is contained in:
Aaron Ballman 2022-05-03 09:53:53 -04:00
parent 3e8aca5324
commit 50b51b1860

View File

@ -9,7 +9,7 @@
// -fopenmp option is specified
#ifndef _OPENMP
#error "No _OPENMP macro is defined with -fopenmp option"
#elsif _OPENMP != 201107
#elif _OPENMP != 201811
#error "_OPENMP has incorrect value"
#endif //_OPENMP
#else