From 9802edb4b674a4e079309dcd02b79a81f457808b Mon Sep 17 00:00:00 2001 From: Jonathan Robey Date: Fri, 29 Jul 2016 09:46:53 -0700 Subject: [PATCH] Fix include comments --- include/deal.II/grid/filtered_iterator.h | 2 +- include/deal.II/numerics/time_dependent.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/grid/filtered_iterator.h b/include/deal.II/grid/filtered_iterator.h index f02521fe8b..b9908dcf7a 100644 --- a/include/deal.II/grid/filtered_iterator.h +++ b/include/deal.II/grid/filtered_iterator.h @@ -376,7 +376,7 @@ namespace IteratorFilters * @endcode * then * @code - * std_cxx11::bind (std::ptr_fun(&level_equal_to), std_cxx11::_1, 3) + * std_cxx11::bind (&level_equal_to, std_cxx11::_1, 3) * @endcode * is another valid predicate (here: a function that returns true if either * the iterator is past the end or the level is equal to the second argument; diff --git a/include/deal.II/numerics/time_dependent.h b/include/deal.II/numerics/time_dependent.h index 504bdee3e0..c71f09d4a7 100644 --- a/include/deal.II/numerics/time_dependent.h +++ b/include/deal.II/numerics/time_dependent.h @@ -284,7 +284,7 @@ template class Triangulation; * * do_loop (mem_fun (&TimeStepBase_Tria::init_for_refinement), * std_cxx11::bind (&TimeStepBase_Wave::refine_grid, - * std_cxx11::_1 + * std_cxx11::_1, * TimeStepBase_Tria::RefinementData (top_threshold, * bottom_threshold)), * TimeDependent::TimeSteppingData (0,1), -- 2.39.5