[Lldb-commits] [PATCH] D144228: [lldb] Stop generating swig bindings for SBLaunchInfo copy constructor
Alex Langford via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 16 18:33:47 PST 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rGffe982f96bff: [lldb] Stop generating swig bindings for SBLaunchInfo copy constructor (authored by bulbazord).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D144228/new/
https://reviews.llvm.org/D144228
Files:
lldb/include/lldb/API/SBLaunchInfo.h
Index: lldb/include/lldb/API/SBLaunchInfo.h
===================================================================
--- lldb/include/lldb/API/SBLaunchInfo.h
+++ lldb/include/lldb/API/SBLaunchInfo.h
@@ -26,7 +26,14 @@
~SBLaunchInfo();
+#ifndef SWIG
+ // The copy constructor for SBLaunchInfo presents some problems on some
+ // supported versions of swig (e.g. 3.0.2). When trying to create an
+ // SBLaunchInfo from python with the argument `None`, swig will try to call
+ // the copy constructor instead of SBLaunchInfo(const char **). For that
+ // reason, we avoid exposing the copy constructor to python.
SBLaunchInfo(const SBLaunchInfo &rhs);
+#endif
SBLaunchInfo &operator=(const SBLaunchInfo &rhs);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D144228.498230.patch
Type: text/x-patch
Size: 724 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230217/f13eb7c9/attachment.bin>
More information about the lldb-commits
mailing list