Niels 2015-08-13 10:24:28 +02:00
parent fadccc34eb
commit 6f2da1a39a
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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