Skip to content

Commit

Permalink
Rename shared_ptr testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
wsfulton committed Apr 21, 2017
1 parent 31459d0 commit 093cf8d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGES.current
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%module(directors="1") "cpp11_shared_ptr_director"
%module(directors="1") "li_boost_shared_ptr_director"

%{
#include <boost/shared_ptr.hpp>
Expand Down
2 changes: 1 addition & 1 deletion Examples/test-suite/ruby/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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 \
Expand Down
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 093cf8d

Please sign in to comment.