Skip to content

Commit

Permalink
Merge branch 'next' of https://github.com/MrShinshi/fast_io into next
Browse files Browse the repository at this point in the history
  • Loading branch information
MrShinshi committed Apr 11, 2024
2 parents 419bb72 + e08e97a commit e37b255
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/fast_io_dsal/impl/array.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class array
#elif __has_cpp_attribute(msvc::forceinline)
[[msvc::forceinline]]
#endif
inline constexpr reference back(size_type idx) noexcept
inline constexpr reference back() noexcept
{
constexpr size_type nm1{N - 1};
return content[nm1];
Expand All @@ -181,7 +181,7 @@ class array
#elif __has_cpp_attribute(msvc::forceinline)
[[msvc::forceinline]]
#endif
inline constexpr const_reference back(size_type idx) const noexcept
inline constexpr const_reference back() const noexcept
{
constexpr size_type nm1{N - 1};
return content[nm1];
Expand Down

0 comments on commit e37b255

Please sign in to comment.