File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2325,32 +2325,32 @@ struct coroutine
2325
2325
template < typename R >
2326
2326
typename pull_coroutine< R >::iterator
2327
2327
begin ( pull_coroutine< R > & c)
2328
- { return boost::begin ( c); }
2328
+ { return coroutines::range_begin ( c); }
2329
2329
2330
2330
template < typename R >
2331
2331
typename pull_coroutine< R >::const_iterator
2332
2332
begin ( pull_coroutine< R > const & c)
2333
- { return boost::begin ( c); }
2333
+ { return coroutines::range_begin ( c); }
2334
2334
2335
2335
template < typename R >
2336
2336
typename pull_coroutine< R >::iterator
2337
2337
end ( pull_coroutine< R > & c)
2338
- { return boost::end ( c); }
2338
+ { return coroutines::range_end ( c); }
2339
2339
2340
2340
template < typename R >
2341
2341
typename pull_coroutine< R >::const_iterator
2342
2342
end ( pull_coroutine< R > const & c)
2343
- { return boost::end ( c); }
2343
+ { return coroutines::range_end ( c); }
2344
2344
2345
2345
template < typename R >
2346
2346
typename push_coroutine< R >::iterator
2347
2347
begin ( push_coroutine< R > & c)
2348
- { return boost::begin ( c); }
2348
+ { return coroutines::range_begin ( c); }
2349
2349
2350
2350
template < typename R >
2351
2351
typename push_coroutine< R >::iterator
2352
2352
end ( push_coroutine< R > & c)
2353
- { return boost::end ( c); }
2353
+ { return coroutines::range_end ( c); }
2354
2354
2355
2355
}
2356
2356
You can’t perform that action at this time.
0 commit comments