Skip to content

Commit 199701b

Browse files
committed
Fix parameter type in noexcept_call for consistency and clarity
- Updated the parameter type in the `noexcept_call` function from `::F` to `F` to enhance clarity and maintain consistency with other function signatures. - This change improves the readability of the code and aligns with recent refactoring efforts in the codebase.
1 parent fd3a42b commit 199701b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/fast_io_core_impl/freestanding/noexcept_call.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ inline
5353
#if __cpp_if_consteval >= 202106L || __cpp_lib_is_constant_evaluated >= 201811
5454
constexpr
5555
#endif
56-
decltype(auto) noexcept_call(::F *f, Args &&...args) noexcept
56+
decltype(auto) noexcept_call(F *f, Args &&...args) noexcept
5757
{
5858
if (__builtin_is_constant_evaluated())
5959
{

0 commit comments

Comments
 (0)