mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-13 01:05:36 +00:00
Change to make NVCC happy
This commit is contained in:
parent
ee16f62322
commit
b5a947dd79
@ -3640,12 +3640,13 @@ This class implements a both iterators (iterator and const_iterator) for the
|
|||||||
|
|
||||||
@since version 1.0.0, simplified in version 2.0.9
|
@since version 1.0.0, simplified in version 2.0.9
|
||||||
*/
|
*/
|
||||||
|
|
||||||
template<typename BasicJsonType>
|
template<typename BasicJsonType>
|
||||||
class iter_impl : public std::iterator<std::random_access_iterator_tag, BasicJsonType>
|
class iter_impl : public std::iterator<std::random_access_iterator_tag, BasicJsonType>
|
||||||
{
|
{
|
||||||
/// allow basic_json to access private members
|
/// allow basic_json to access private members
|
||||||
friend iter_impl<typename std::conditional<std::is_const<BasicJsonType>::value, typename std::remove_const<BasicJsonType>::type, const BasicJsonType>::type>;
|
friend iter_impl<typename std::conditional<std::is_const<BasicJsonType>::value, typename std::remove_const<BasicJsonType>::type, const BasicJsonType>::type>;
|
||||||
friend BasicJsonType;
|
// friend class BasicJsonType;
|
||||||
friend iteration_proxy<iter_impl>;
|
friend iteration_proxy<iter_impl>;
|
||||||
|
|
||||||
using object_t = typename BasicJsonType::object_t;
|
using object_t = typename BasicJsonType::object_t;
|
||||||
|
Loading…
Reference in New Issue
Block a user