Skip to content

Commit

Permalink
fixed an error with the parse tuple getting the wrong tuple for the f…
Browse files Browse the repository at this point in the history
…loat precision variable if example HAS_MPI
  • Loading branch information
shahbajsohal committed Aug 3, 2023
1 parent 9bbd26f commit 26bf54b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/macros/SundialsParseTuple.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ macro(sundials_parse_tuple example_tuple)
if(HAS_OPENMP)
list(GET example_tuple 3 ${sundials_parse_tuple_FLT_PRECISION_VAR})
else()
list(GET example_tuple 4 ${sundials_parse_tuple_FLT_PRECISION_VAR})
list(GET example_tuple 5 ${sundials_parse_tuple_FLT_PRECISION_VAR})
endif()
endif()
if(sundials_parse_tuple_INT_PRECISION_VAR)
Expand Down

0 comments on commit 26bf54b

Please sign in to comment.