Skip to content
Snippets Groups Projects
Commit 200b4326 authored by Jonathan Lambrechts's avatar Jonathan Lambrechts
Browse files

dg : -Wall -Werror -pedantic -DFORTIFY_SOURCE=1 -Wno-long-long

parent f43522e3
No related branches found
No related tags found
No related merge requests found
...@@ -332,7 +332,7 @@ inline SVector3 operator* (const STensor3& t, const SVector3& v){ ...@@ -332,7 +332,7 @@ inline SVector3 operator* (const STensor3& t, const SVector3& v){
for (int j=0; j<3; j++) for (int j=0; j<3; j++)
temp[i]+= t(i,j)*v[j]; temp[i]+= t(i,j)*v[j];
return temp; return temp;
}; }
inline SVector3 operator* (const SVector3& v, const STensor3& t){ inline SVector3 operator* (const SVector3& v, const STensor3& t){
SVector3 temp(0.,0.,0.); SVector3 temp(0.,0.,0.);
...@@ -340,7 +340,7 @@ inline SVector3 operator* (const SVector3& v, const STensor3& t){ ...@@ -340,7 +340,7 @@ inline SVector3 operator* (const SVector3& v, const STensor3& t){
for (int j=0; j<3; j++) for (int j=0; j<3; j++)
temp[j]+= v[i]*t(i,j); temp[j]+= v[i]*t(i,j);
return temp; return temp;
}; }
inline STensor3 operator*(const STensor3 &t, double m) inline STensor3 operator*(const STensor3 &t, double m)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment