Package: opensurgsim / 0.7.0-11

boost-1.65-compat.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Description: make code compatible with boost 1.65.
 The code previously worked by virtue of certain standard headers (iostream)
 being indirectly included via boost.  In boost 1.65 these headers are not
 included for us, so include them directly.
Author: Steve Langasek <steve.langasek@ubuntu.com>
Last-Updated: 2018-03-19
Bug-Debian: https://bugs.debian.org/893589

Index: opensurgsim-0.7.0/SurgSim/Blocks/DebugDumpBehavior.cpp
===================================================================
--- opensurgsim-0.7.0.orig/SurgSim/Blocks/DebugDumpBehavior.cpp
+++ opensurgsim-0.7.0/SurgSim/Blocks/DebugDumpBehavior.cpp
@@ -13,6 +13,8 @@
 // See the License for the specific language governing permissions and
 // limitations under the License.
 
+#include <iostream>
+
 #include "SurgSim/Blocks/DebugDumpBehavior.h"
 
 #include "SurgSim/DataStructures/DataGroup.h"
@@ -163,4 +165,4 @@
 }
 
 }
-}
\ No newline at end of file
+}