From 91656a9d12bb4b499a2080dd11359e2be4a3c061 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Thu, 3 Sep 2015 15:49:31 +0200 Subject: [PATCH] Attempt to fix non-C++11 code path --- include/deal.II/matrix_free/matrix_free.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/matrix_free/matrix_free.h b/include/deal.II/matrix_free/matrix_free.h index 68508b8db1..b66c121a63 100644 --- a/include/deal.II/matrix_free/matrix_free.h +++ b/include/deal.II/matrix_free/matrix_free.h @@ -2493,7 +2493,7 @@ MatrixFree::cell_loop const std::pair &)> function = std_cxx11::bind(function_pointer, - std_cxx11::cref(*owning_class), + owning_class, std_cxx11::_1, std_cxx11::_2, std_cxx11::_3, @@ -2525,7 +2525,7 @@ MatrixFree::cell_loop const std::pair &)> function = std_cxx11::bind(function_pointer, - std_cxx11::ref(*owning_class), + owning_class, std_cxx11::_1, std_cxx11::_2, std_cxx11::_3, -- 2.39.5