From: Matthias Maier Date: Tue, 15 Sep 2015 18:26:39 +0000 (-0500) Subject: Fix compilation X-Git-Tag: v8.4.0-rc2~416^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1616%2Fhead;p=dealii.git Fix compilation --- diff --git a/source/base/geometry_info.cc b/source/base/geometry_info.cc index db0b24e10d..513baa8edc 100644 --- a/source/base/geometry_info.cc +++ b/source/base/geometry_info.cc @@ -1820,7 +1820,7 @@ namespace internal Tensor<1,3> wedge_product (const Tensor<1,3> (&derivative)[2]) { - result cross_product (derivative[0], derivative[1]); + return cross_product (derivative[0], derivative[1]); }