From 3cc36abc13962e6999af2aa3908d3e66ceabc9ee Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Wed, 7 Aug 2013 09:07:49 +0000 Subject: [PATCH] Fix a warning git-svn-id: https://svn.dealii.org/trunk@30243 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/block_matrix_base.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deal.II/include/deal.II/lac/block_matrix_base.h b/deal.II/include/deal.II/lac/block_matrix_base.h index 6ed20d407e..b839e04797 100644 --- a/deal.II/include/deal.II/lac/block_matrix_base.h +++ b/deal.II/include/deal.II/lac/block_matrix_base.h @@ -1302,7 +1302,9 @@ private: * anything. */ TemporaryData & operator = (const TemporaryData &) - {} + { + return *this; + } }; /** -- 2.39.5