diff --git a/Interpolation/examples/Interpolation/sibson_interpolation_vertex_with_info_2.cpp b/Interpolation/examples/Interpolation/sibson_interpolation_vertex_with_info_2.cpp index 8e74eab6aa1..ade979afc8e 100644 --- a/Interpolation/examples/Interpolation/sibson_interpolation_vertex_with_info_2.cpp +++ b/Interpolation/examples/Interpolation/sibson_interpolation_vertex_with_info_2.cpp @@ -50,8 +50,13 @@ struct Value_function template struct Gradient_function - : public std::iterator { + typedef void value_type; + typedef void Distance; + typedef void Pointer; + typedef void Reference; + typedef std::output_iterator_tag category; + typedef V argument_type; typedef std::pair result_type;