We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52fa713 commit dac3cf7Copy full SHA for dac3cf7
1 file changed
test/test_virtual_ptr_doc.cpp
@@ -186,11 +186,14 @@ namespace non_polymorphic {
186
struct Animal {}; // polymorphic not required
187
struct Dog : Animal {}; // polymorphic not required
188
BOOST_OPENMETHOD_CLASSES(Animal, Dog);
189
+
190
+// codecov:ignore:start
191
BOOST_OPENMETHOD(poke, (virtual_ptr<Animal>), void);
192
-void instiantiate_poke(virtual_ptr<Dog> snoopy) {
193
+void instantiate_poke(virtual_ptr<Dog> snoopy) {
194
poke(snoopy);
195
}
196
+// codecov:ignore:end
197
198
BOOST_AUTO_TEST_CASE(virtual_ptr_examples_non_polymorphic) {
199
{
0 commit comments