From bbc4e164a673ab6b06c5e19be7f8a8f632b58d32 Mon Sep 17 00:00:00 2001 From: Denis Davydov Date: Tue, 31 Jan 2017 14:40:27 +0100 Subject: [PATCH] fix duplicate symbols for EmptyPayload --- include/deal.II/lac/linear_operator.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/deal.II/lac/linear_operator.h b/include/deal.II/lac/linear_operator.h index 0fbfec3161..86f45d6ee5 100644 --- a/include/deal.II/lac/linear_operator.h +++ b/include/deal.II/lac/linear_operator.h @@ -935,6 +935,7 @@ namespace internal * Operator that returns a payload configured to support the * addition of two LinearOperators */ + inline EmptyPayload operator+(const EmptyPayload &, const EmptyPayload &) { @@ -945,6 +946,7 @@ namespace internal * Operator that returns a payload configured to support the * multiplication of two LinearOperators */ + inline EmptyPayload operator*(const EmptyPayload &, const EmptyPayload &) { -- 2.39.5