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
|
|
@ -79,6 +79,15 @@
|
|||
(takeKlassUniquePtr (make-null))
|
||||
(checkCount 0)
|
||||
|
||||
; overloaded parameters
|
||||
(unless (= (overloadTest) 0)
|
||||
(error "overloadTest failed"))
|
||||
(unless (= (overloadTest null) 1)
|
||||
(error "overloadTest failed"))
|
||||
(unless (= (overloadTest (new-Klass "over")) 1)
|
||||
(error "overloadTest failed"))
|
||||
(checkCount 0)
|
||||
|
||||
|
||||
; unique_ptr as output
|
||||
(define k1 (makeKlassUniquePtr "first"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue