diff --git a/unsupported/test/NonLinear.cpp b/unsupported/test/NonLinear.cpp index 028982dd2..92ac56380 100644 --- a/unsupported/test/NonLinear.cpp +++ b/unsupported/test/NonLinear.cpp @@ -121,13 +121,6 @@ struct Functor // void operator() (const InputType& x, ValueType* v, JacobianType* _j=0) const; }; - - - -/** - * This functor example uses non-static members, see other ones for static - * methods - */ struct lmder_functor : Functor { lmder_functor(void): Functor(3,15) {} @@ -240,10 +233,6 @@ void testLmder() // VERIFY_IS_APPROX( covfac*fjac.corner(TopLeft) , cov_ref); } -/** - * This functor example uses static members, see lmder_functor for an - * example of a non-static functor. - */ struct hybrj_functor : Functor { hybrj_functor(void) : Functor(9,9) {}