Add missing typecheck typemaps for std::auto_ptr and std::unique_ptr
To fix overloading when using these types.
This commit is contained in:
parent
f0af17b324
commit
e97181ebc0
59 changed files with 442 additions and 2 deletions
|
|
@ -81,6 +81,18 @@ cpp11_std_unique_ptr.takeKlassUniquePtr(nil);
|
|||
cpp11_std_unique_ptr.takeKlassUniquePtr(cpp11_std_unique_ptr.make_null());
|
||||
checkCount(0);
|
||||
|
||||
-- overloaded parameters
|
||||
if not (cpp11_std_unique_ptr.overloadTest() == 0) then
|
||||
error("overloadTest failed")
|
||||
end
|
||||
if not (cpp11_std_unique_ptr.overloadTest(nil) == 1) then
|
||||
error("overloadTest failed")
|
||||
end
|
||||
if not (cpp11_std_unique_ptr.overloadTest(cpp11_std_unique_ptr.Klass("over")) == 1) then
|
||||
error("overloadTest failed")
|
||||
end
|
||||
checkCount(0)
|
||||
|
||||
|
||||
-- unique_ptr as output
|
||||
k1 = cpp11_std_unique_ptr.makeKlassUniquePtr("first")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue