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
341341
342342 void iterate(
343343 const baset &n,
344- const unsigned depth ,
344+ const unsigned start_depth ,
345345 std::function<void (const key_type &k, const mapped_type &m)> f) const ;
346346
347347 void gather_all (const baset &n, const unsigned depth, delta_viewt &delta_view)
@@ -375,13 +375,13 @@ class sharing_mapt
375375SHARING_MAPT (void )
376376::iterate(
377377 const baset &n,
378- unsigned depth ,
378+ unsigned start_depth ,
379379 std::function<void (const key_type &k, const mapped_type &m)> f) const
380380{
381381 typedef std::pair<unsigned , const baset *> stack_itemt;
382382
383383 std::stack<stack_itemt> stack;
384- stack.push ({depth , &n});
384+ stack.push ({start_depth , &n});
385385
386386 do
387387 {
You can’t perform that action at this time.
0 commit comments