@@ -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 ;
@@ -3662,18 +3662,19 @@ namespace debug
36623662 };
36633663 make_indent ();
36643664 auto const &w = attr.writable ();
3665- std::cout << w.ownKeyWithinParent << ' \t ' << attr.m_attri .get ()
3666- << " -> " << &attr.writable () << ' \n ' ;
3665+ std::cout << attr.m_attri ->ownKeyWithinParent << ' \t '
3666+ << attr.m_attri .get () << " -> " << &attr.writable ()
3667+ << ' \n ' ;
36673668 make_indent ();
36683669 std::cout << " Self:\t " << attr.m_attri ->dirtySelf
36693670 << " \t Rec: " << attr.m_attri ->dirtyRecursive << ' \n ' ;
36703671 std::cout << ' \n ' ;
36713672 graph << " {rank = same; " ;
36723673 graph << " _" << attr.m_attri .get () << " [color=green, label = \" A "
3673- << attr.m_attri .get () << " '" << w. ownKeyWithinParent
3674- << " '\" ]; " ;
3674+ << attr.m_attri .get () << " '"
3675+ << attr. m_attri -> ownKeyWithinParent << " '\" ]; " ;
36753676 graph << " _" << &w << " [color=blue, label = \" W " << &w << " '"
3676- << w. ownKeyWithinParent << " '\" ]; " ;
3677+ << attr. m_attri -> ownKeyWithinParent << " '\" ]; " ;
36773678 graph << " }\n " ;
36783679 graph << " _" << &w << " -> _" << attr.m_attri .get ()
36793680 << " [dir=none];\n " ;
0 commit comments