@@ -1080,7 +1080,7 @@ void Series::initSeries(
10801080 }
10811081
10821082 series.iterations .linkHierarchy (*this );
1083- series.iterations .writable (). ownKeyWithinParent = " data" ;
1083+ series.iterations .m_attri -> ownKeyWithinParent = " data" ;
10841084 series.m_rankTable .m_attributable .linkHierarchy (*this );
10851085
10861086 series.m_name = input->name ;
@@ -3664,18 +3664,19 @@ namespace debug
36643664 };
36653665 make_indent ();
36663666 auto const &w = attr.writable ();
3667- std::cout << w.ownKeyWithinParent << ' \t ' << attr.m_attri .get ()
3668- << " -> " << &attr.writable () << ' \n ' ;
3667+ std::cout << attr.m_attri ->ownKeyWithinParent << ' \t '
3668+ << attr.m_attri .get () << " -> " << &attr.writable ()
3669+ << ' \n ' ;
36693670 make_indent ();
36703671 std::cout << " Self:\t " << attr.m_attri ->dirtySelf
36713672 << " \t Rec: " << attr.m_attri ->dirtyRecursive << ' \n ' ;
36723673 std::cout << ' \n ' ;
36733674 graph << " {rank = same; " ;
36743675 graph << " _" << attr.m_attri .get () << " [color=green, label = \" A "
3675- << attr.m_attri .get () << " '" << w. ownKeyWithinParent
3676- << " '\" ]; " ;
3676+ << attr.m_attri .get () << " '"
3677+ << attr. m_attri -> ownKeyWithinParent << " '\" ]; " ;
36773678 graph << " _" << &w << " [color=blue, label = \" W " << &w << " '"
3678- << w. ownKeyWithinParent << " '\" ]; " ;
3679+ << attr. m_attri -> ownKeyWithinParent << " '\" ]; " ;
36793680 graph << " }\n " ;
36803681 graph << " _" << &w << " -> _" << attr.m_attri .get ()
36813682 << " [dir=none];\n " ;
0 commit comments