From ed931df21a03d16432ac2a6b79d793625ef4f36f Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Mon, 15 Jun 2020 19:07:36 +0200 Subject: [PATCH] Fix compilation with Boost 1.73 The ModelTreeWidget.cc file was using the Boost Bind placeholders, but it was not including boost/bind.hpp . Before Boost 1.73, this was working probably due to transitive includes. Slightly related issue: https://github.com/osrf/gazebo/issues/2757 . Signed-off-by: Silvio Traversaro --- gazebo/gui/model/ModelTreeWidget.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gazebo/gui/model/ModelTreeWidget.cc b/gazebo/gui/model/ModelTreeWidget.cc index 860b930a5f..c8504e0ef1 100644 --- a/gazebo/gui/model/ModelTreeWidget.cc +++ b/gazebo/gui/model/ModelTreeWidget.cc @@ -14,6 +14,7 @@ * limitations under the License. * */ +#include #include "gazebo/common/Events.hh"