File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ class sharing_mapt
341
341
342
342
void iterate(
343
343
const baset &n,
344
- const unsigned depth ,
344
+ const unsigned start_depth ,
345
345
std::function<void (const key_type &k, const mapped_type &m)> f) const ;
346
346
347
347
void gather_all (const baset &n, const unsigned depth, delta_viewt &delta_view)
@@ -375,13 +375,13 @@ class sharing_mapt
375
375
SHARING_MAPT (void )
376
376
::iterate(
377
377
const baset &n,
378
- unsigned depth ,
378
+ unsigned start_depth ,
379
379
std::function<void (const key_type &k, const mapped_type &m)> f) const
380
380
{
381
381
typedef std::pair<unsigned , const baset *> stack_itemt;
382
382
383
383
std::stack<stack_itemt> stack;
384
- stack.push ({depth , &n});
384
+ stack.push ({start_depth , &n});
385
385
386
386
do
387
387
{
You can’t perform that action at this time.
0 commit comments