@@ -667,7 +667,7 @@ void SerialContainer::compute() {
667667 continue ;
668668
669669 ROS_DEBUG (" Computing stage '%s'" , stage->name ().c_str ());
670- stage->pimpl ()->compute ();
670+ stage->pimpl ()->runCompute ();
671671 } catch (const Property::error& e) {
672672 stage->reportPropertyError (e);
673673 }
@@ -861,7 +861,7 @@ bool WrapperBase::canCompute() const {
861861
862862void WrapperBase::compute () {
863863 try {
864- wrapped ()->pimpl ()->compute ();
864+ wrapped ()->pimpl ()->runCompute ();
865865 } catch (const Property::error& e) {
866866 wrapped ()->reportPropertyError (e);
867867 }
@@ -877,7 +877,7 @@ bool Alternatives::canCompute() const {
877877void Alternatives::compute () {
878878 for (const auto & stage : pimpl ()->children ()) {
879879 try {
880- stage->pimpl ()->compute ();
880+ stage->pimpl ()->runCompute ();
881881 } catch (const Property::error& e) {
882882 stage->reportPropertyError (e);
883883 }
@@ -917,7 +917,7 @@ void Fallbacks::compute() {
917917 return ;
918918
919919 try {
920- active_child_->pimpl ()->compute ();
920+ active_child_->pimpl ()->runCompute ();
921921 } catch (const Property::error& e) {
922922 active_child_->reportPropertyError (e);
923923 }
@@ -982,7 +982,7 @@ bool Merger::canCompute() const {
982982void Merger::compute () {
983983 for (const auto & stage : pimpl ()->children ()) {
984984 try {
985- stage->pimpl ()->compute ();
985+ stage->pimpl ()->runCompute ();
986986 } catch (const Property::error& e) {
987987 stage->reportPropertyError (e);
988988 }
0 commit comments