@@ -1081,7 +1081,7 @@ void Series::initSeries(
10811081 }
10821082
10831083 series.iterations .linkHierarchy (*this );
1084- series.iterations .writable (). ownKeyWithinParent = " iterations" ;
1084+ series.iterations .m_attri -> ownKeyWithinParent = " iterations" ;
10851085 series.m_rankTable .m_attributable .linkHierarchy (*this );
10861086
10871087 series.m_name = input->name ;
@@ -3640,18 +3640,19 @@ namespace debug
36403640 };
36413641 make_indent ();
36423642 auto const &w = attr.writable ();
3643- std::cout << w.ownKeyWithinParent << ' \t ' << attr.m_attri .get ()
3644- << " -> " << &attr.writable () << ' \n ' ;
3643+ std::cout << attr.m_attri ->ownKeyWithinParent << ' \t '
3644+ << attr.m_attri .get () << " -> " << &attr.writable ()
3645+ << ' \n ' ;
36453646 make_indent ();
36463647 std::cout << " Self:\t " << attr.m_attri ->dirtySelf
36473648 << " \t Rec: " << attr.m_attri ->dirtyRecursive << ' \n ' ;
36483649 std::cout << ' \n ' ;
36493650 graph << " {rank = same; " ;
36503651 graph << " _" << attr.m_attri .get () << " [color=green, label = \" A "
3651- << attr.m_attri .get () << " '" << w. ownKeyWithinParent
3652- << " '\" ]; " ;
3652+ << attr.m_attri .get () << " '"
3653+ << attr. m_attri -> ownKeyWithinParent << " '\" ]; " ;
36533654 graph << " _" << &w << " [color=blue, label = \" W " << &w << " '"
3654- << w. ownKeyWithinParent << " '\" ]; " ;
3655+ << attr. m_attri -> ownKeyWithinParent << " '\" ]; " ;
36553656 graph << " }\n " ;
36563657 graph << " _" << &w << " -> _" << attr.m_attri .get ()
36573658 << " [dir=none];\n " ;
0 commit comments