Skip to content

Commit

Permalink
use long long for IParser value_t in ParmParse
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderSinn committed Aug 1, 2024
1 parent 3e93ef7 commit c27b080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/Base/AMReX_ParmParse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@ PARSER_t
pp_make_parser (std::string const& func, Vector<std::string> const& vars,
ParmParse::Table const& table, std::string const& parser_prefix)
{
using value_t = std::conditional_t<std::is_integral_v<T>, int, double>;
using value_t = std::conditional_t<std::is_integral_v<T>, long long, double>;

std::vector<std::string> prefixes;
prefixes.reserve(3);
Expand Down

0 comments on commit c27b080

Please sign in to comment.