File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments