From 02543e39d4fe217f901d9d4a3da4b95f81f474eb Mon Sep 17 00:00:00 2001 From: Martin DeMello Date: Fri, 2 Aug 2019 23:12:21 -0700 Subject: Don't generate bindings that require copying a logStream. swig has a problem with non-copyable objects being moved in and out of containers; we can bypass the problem with SimmedMoveMessage by simply not generating bindings for the relevant methods. --- bindings/quackle.i | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bindings/quackle.i b/bindings/quackle.i index e45eb88..16773e7 100644 --- a/bindings/quackle.i +++ b/bindings/quackle.i @@ -1,3 +1,7 @@ +%rename("$ignore") Quackle::SimmedMoveMessageQueue::pop; +%rename("$ignore") Quackle::SimmedMoveMessageQueue::pop_or_terminate; +%rename("$ignore") logStream; + %module quackle %{ #include "fixedstring.h" -- cgit v1.2.3