Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Aug 28, 2024
1 parent f8f4960 commit 74a55e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xtd.core/include/xtd/basic_string.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ inline xtd::array<typename xtd::basic_string<char_t, traits_t, allocator_t>::val

template<typename char_t, typename traits_t, typename allocator_t>
inline xtd::array<typename xtd::basic_string<char_t, traits_t, allocator_t>::value_type> xtd::basic_string<char_t, traits_t, allocator_t>::to_char_array(xtd::size start_index, xtd::size length) const {
return to_array(index, length);
return to_array(start_index, length);
}

template<typename char_t, typename traits_t, typename allocator_t>
Expand Down

0 comments on commit 74a55e6

Please sign in to comment.