Skip to content

Commit

Permalink
Merge pull request #1205 from StephanTLavavej/avoid-deprecated-stdext…
Browse files Browse the repository at this point in the history
…-iterators

Avoid `stdext::checked_array_iterator` for modern MSVC
  • Loading branch information
jandupej authored Sep 30, 2024
2 parents a0a1c7f + 778add6 commit ae061fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/inc/bond/core/detail/sdl.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
namespace bond { namespace detail
{

#ifdef _MSC_VER
#if defined(_MSC_VER) && _MSC_VER < 1915

template<class Iterator> inline
stdext::checked_array_iterator<Iterator> make_checked_array_iterator(
Expand Down

0 comments on commit ae061fd

Please sign in to comment.