diff --git a/Geo/STensor3.h b/Geo/STensor3.h
index bdafe1c9b873cc7a2bbed94467de304280c7c06f..398596f151b6caf1c22caf9789023e1210097377 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)