Rename shared_ptr testcase
This commit is contained in:
parent
31459d0cc0
commit
093cf8d60f
4 changed files with 7 additions and 4 deletions
|
|
@ -7,6 +7,9 @@ the issue number to the end of the URL: https://github.com/swig/swig/issues/
|
|||
Version 3.0.13 (in progress)
|
||||
============================
|
||||
|
||||
2017-04-21: tamuratak
|
||||
[Ruby] #964 - Add shared_ptr director typemaps.
|
||||
|
||||
2017-04-20: tamuratak
|
||||
[Ruby] #930, #937 - Fix containers of std::shared_ptr.
|
||||
Upcasting, const types (eg vector<shared_ptr<const T>>) and NULL/nullptr support added.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%module(directors="1") "cpp11_shared_ptr_director"
|
||||
%module(directors="1") "li_boost_shared_ptr_director"
|
||||
|
||||
%{
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
|
@ -11,6 +11,7 @@ top_srcdir = @top_srcdir@
|
|||
top_builddir = @top_builddir@
|
||||
|
||||
CPP_TEST_CASES = \
|
||||
li_boost_shared_ptr_director \
|
||||
li_cstring \
|
||||
li_factory \
|
||||
li_std_functors \
|
||||
|
|
@ -34,7 +35,6 @@ CPP11_TEST_CASES = \
|
|||
cpp11_hash_tables \
|
||||
cpp11_shared_ptr_upcast \
|
||||
cpp11_shared_ptr_const \
|
||||
cpp11_shared_ptr_director
|
||||
|
||||
C_TEST_CASES += \
|
||||
li_cstring \
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
require 'cpp11_shared_ptr_director'
|
||||
require 'li_boost_shared_ptr_director'
|
||||
|
||||
include Cpp11_shared_ptr_director
|
||||
include Li_boost_shared_ptr_director
|
||||
|
||||
class Derived < Base
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue