diff --git a/test/polymorphism2.cpp b/test/polymorphism2.cpp index 13e8ab4d..f2edd467 100755 --- a/test/polymorphism2.cpp +++ b/test/polymorphism2.cpp @@ -56,7 +56,7 @@ struct ACallback : A, wrapper #else return f(); #endif - else + //else return A::f(); } }; @@ -87,7 +87,7 @@ struct DCallback : D, wrapper #else return f(); #endif - else + //else return D::f(); } };