From 200b43261b065766a1de8221a5cf655489586cbb Mon Sep 17 00:00:00 2001 From: Jonathan Lambrechts <jonathan.lambrechts@uclouvain.be> Date: Tue, 21 Aug 2012 13:53:30 +0000 Subject: [PATCH] dg : -Wall -Werror -pedantic -DFORTIFY_SOURCE=1 -Wno-long-long --- Geo/STensor3.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Geo/STensor3.h b/Geo/STensor3.h index bdafe1c9b8..398596f151 100644 --- a/Geo/STensor3.h +++ b/Geo/STensor3.h @@ -332,7 +332,7 @@ inline SVector3 operator* (const STensor3& t, const SVector3& v){ for (int j=0; j<3; j++) temp[i]+= t(i,j)*v[j]; return temp; -}; +} inline SVector3 operator* (const SVector3& v, const STensor3& t){ SVector3 temp(0.,0.,0.); @@ -340,7 +340,7 @@ inline SVector3 operator* (const SVector3& v, const STensor3& t){ for (int j=0; j<3; j++) temp[j]+= v[i]*t(i,j); return temp; -}; +} inline STensor3 operator*(const STensor3 &t, double m) -- GitLab