Skip to content

Commit

Permalink
Merge pull request #1019 from boostorg/issue1018
Browse files Browse the repository at this point in the history
Fix #1018 via eliminate unused parameter
  • Loading branch information
ckormanyos authored Aug 23, 2023
2 parents 6caf005 + 7b37e23 commit fac5c41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/math/tools/big_constant.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ inline T make_big_value(largest_float, const char* s, std::false_type const&, st
}
#else
template <typename T>
inline T make_big_value(largest_float, const char* s, std::false_type const&, std::false_type const&)
inline T make_big_value(largest_float, const char*, std::false_type const&, std::false_type const&)
{
static_assert(sizeof(T) == 0, "Type is unsupported in standalone mode. Please disable and try again.");
}
Expand Down

0 comments on commit fac5c41

Please sign in to comment.