@@ -1111,7 +1111,7 @@ void Series::initSeries(
11111111 }
11121112
11131113 series.iterations .linkHierarchy (*this );
1114- series.iterations .writable (). ownKeyWithinParent = " iterations" ;
1114+ series.iterations .m_attri -> ownKeyWithinParent = " iterations" ;
11151115 series.m_rankTable .m_attributable .linkHierarchy (*this );
11161116
11171117 series.m_name = input->name ;
@@ -3449,18 +3449,19 @@ namespace debug
34493449 };
34503450 make_indent ();
34513451 auto const &w = attr.writable ();
3452- std::cout << w.ownKeyWithinParent << ' \t ' << attr.m_attri .get ()
3453- << " -> " << &attr.writable () << ' \n ' ;
3452+ std::cout << attr.m_attri ->ownKeyWithinParent << ' \t '
3453+ << attr.m_attri .get () << " -> " << &attr.writable ()
3454+ << ' \n ' ;
34543455 make_indent ();
34553456 std::cout << " Self:\t " << attr.m_attri ->dirtySelf
34563457 << " \t Rec: " << attr.m_attri ->dirtyRecursive << ' \n ' ;
34573458 std::cout << ' \n ' ;
34583459 graph << " {rank = same; " ;
34593460 graph << " _" << attr.m_attri .get () << " [color=green, label = \" A "
3460- << attr.m_attri .get () << " '" << w. ownKeyWithinParent
3461- << " '\" ]; " ;
3461+ << attr.m_attri .get () << " '"
3462+ << attr. m_attri -> ownKeyWithinParent << " '\" ]; " ;
34623463 graph << " _" << &w << " [color=blue, label = \" W " << &w << " '"
3463- << w. ownKeyWithinParent << " '\" ]; " ;
3464+ << attr. m_attri -> ownKeyWithinParent << " '\" ]; " ;
34643465 graph << " }\n " ;
34653466 graph << " _" << &w << " -> _" << attr.m_attri .get ()
34663467 << " [dir=none];\n " ;
0 commit comments