Commit 6f2da1a3 authored by Niels's avatar Niels
parent fadccc34
...@@ -5702,7 +5702,7 @@ class basic_json ...@@ -5702,7 +5702,7 @@ class basic_json
/// the container to iterate /// the container to iterate
basic_json& container; basic_json& container;
/// the type of the iterator to use while iteration /// the type of the iterator to use while iteration
using json_iterator = decltype(container.begin()); using json_iterator = decltype(std::begin(container));
/// internal iterator wrapper /// internal iterator wrapper
class iterator_wrapper_internal class iterator_wrapper_internal
......
...@@ -5702,7 +5702,7 @@ class basic_json ...@@ -5702,7 +5702,7 @@ class basic_json
/// the container to iterate /// the container to iterate
basic_json& container; basic_json& container;
/// the type of the iterator to use while iteration /// the type of the iterator to use while iteration
using json_iterator = decltype(container.begin()); using json_iterator = decltype(std::begin(container));
/// internal iterator wrapper /// internal iterator wrapper
class iterator_wrapper_internal class iterator_wrapper_internal
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment