Skip to content

Commit 87dc24d

Browse files
committed
Remove T*** test since Rice does not support it.
1 parent 497ac0e commit 87dc24d

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

test/bindings/cpp/incomplete_types-rb.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ void Init_IncompleteTypes()
6666
rb_cOuterInnerPimplClassWithDoublePtr.
6767
define_constructor(Constructor<Outer::Inner::PimplClassWithDoublePtr>()).
6868
define_attr("pp_impl", &Outer::Inner::PimplClassWithDoublePtr::ppImpl).
69-
define_attr("ppp_impl", &Outer::Inner::PimplClassWithDoublePtr::pppImpl).
7069
define_attr("pp_value", &Outer::Inner::PimplClassWithDoublePtr::ppValue).
7170
define_attr("value", &Outer::Inner::PimplClassWithDoublePtr::value);
7271

test/headers/cpp/incomplete_types.hpp

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,24 +105,21 @@ namespace Outer
105105
int value;
106106
};
107107

108-
// Test double-pointer fields with incomplete types (Issue #34 - cv::utils::trace::details)
108+
// Test double-pointer fields with incomplete types
109109
class PimplClassWithDoublePtr
110110
{
111111
public:
112112
struct Impl;
113113

114114
PimplClassWithDoublePtr();
115115

116-
// Double-pointer field to incomplete type - should be SKIPPED
116+
// Double-pointer field to incomplete type
117117
Impl** ppImpl;
118118

119-
// Triple-pointer to incomplete type - should be SKIPPED
120-
Impl*** pppImpl;
121-
122-
// Double-pointer to complete type - should be included
119+
// Double-pointer to complete type
123120
int** ppValue;
124121

125-
// Regular complete type - should be included
122+
// Regular complete type
126123
int value;
127124
};
128125

0 commit comments

Comments
 (0)