@@ -1080,7 +1080,7 @@ void Series::initSeries(
1080
1080
}
1081
1081
1082
1082
series.iterations .linkHierarchy (*this );
1083
- series.iterations .writable (). ownKeyWithinParent = " data" ;
1083
+ series.iterations .m_attri -> ownKeyWithinParent = " data" ;
1084
1084
series.m_rankTable .m_attributable .linkHierarchy (*this );
1085
1085
1086
1086
series.m_name = input->name ;
@@ -3664,18 +3664,19 @@ namespace debug
3664
3664
};
3665
3665
make_indent ();
3666
3666
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 ' ;
3669
3670
make_indent ();
3670
3671
std::cout << " Self:\t " << attr.m_attri ->dirtySelf
3671
3672
<< " \t Rec: " << attr.m_attri ->dirtyRecursive << ' \n ' ;
3672
3673
std::cout << ' \n ' ;
3673
3674
graph << " {rank = same; " ;
3674
3675
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 << " '\" ]; " ;
3677
3678
graph << " _" << &w << " [color=blue, label = \" W " << &w << " '"
3678
- << w. ownKeyWithinParent << " '\" ]; " ;
3679
+ << attr. m_attri -> ownKeyWithinParent << " '\" ]; " ;
3679
3680
graph << " }\n " ;
3680
3681
graph << " _" << &w << " -> _" << attr.m_attri .get ()
3681
3682
<< " [dir=none];\n " ;
0 commit comments