diff options
author | Martin DeMello <mdemello@google.com> | 2019-08-02 23:12:21 -0700 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2019-08-06 09:12:51 -0500 |
commit | 02543e39d4fe217f901d9d4a3da4b95f81f474eb (patch) | |
tree | 295958efd2964a60f043f351ea4434590eba568e /bindings/quackle.i | |
parent | b50b9077ef61b71d9c0e66c3165198a7ab9a5672 (diff) |
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.
Diffstat (limited to 'bindings/quackle.i')
-rw-r--r-- | bindings/quackle.i | 4 |
1 files changed, 4 insertions, 0 deletions
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" |