File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -536,9 +536,9 @@ IntAggregate * create_IntAggregate() {
536536 return new IntAggregate;
537537}
538538
539- const EntityDescriptor * EntityDescItr::NextEntityDesc () {
539+ EntityDescriptor * EntityDescItr::NextEntityDesc_nc () {
540540 if ( cur ) {
541- const EntityDescriptor * ed = cur->EntityDesc ();
541+ EntityDescriptor * ed = cur->EntityDesc ();
542542 cur = ( EntityDescLinkNode * )( cur->NextNode () );
543543 return ed;
544544 }
Original file line number Diff line number Diff line change @@ -172,7 +172,11 @@ class SC_CORE_EXPORT EntityDescItr {
172172 cur = ( EntityDescLinkNode * )( edl.GetHead () );
173173 }
174174
175- const EntityDescriptor * NextEntityDesc ();
175+ inline const EntityDescriptor * NextEntityDesc () {
176+ return NextEntityDesc_nc ();
177+ }
178+ EntityDescriptor * NextEntityDesc_nc ();
179+
176180};
177181
178182
You can’t perform that action at this time.
0 commit comments