From: Martin Kronbichler Date: Thu, 3 Sep 2015 13:49:31 +0000 (+0200) Subject: Attempt to fix non-C++11 code path X-Git-Tag: v8.4.0-rc2~482^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91656a9d12bb4b499a2080dd11359e2be4a3c061;p=dealii.git Attempt to fix non-C++11 code path --- 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,