Skip to content

Commit fac5c41

Browse files
authored
Merge pull request #1019 from boostorg/issue1018
Fix #1018 via eliminate unused parameter
2 parents 6caf005 + 7b37e23 commit fac5c41

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/boost/math/tools/big_constant.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ inline T make_big_value(largest_float, const char* s, std::false_type const&, st
6060
}
6161
#else
6262
template <typename T>
63-
inline T make_big_value(largest_float, const char* s, std::false_type const&, std::false_type const&)
63+
inline T make_big_value(largest_float, const char*, std::false_type const&, std::false_type const&)
6464
{
6565
static_assert(sizeof(T) == 0, "Type is unsupported in standalone mode. Please disable and try again.");
6666
}

0 commit comments

Comments
 (0)