Skip to content
Snippets Groups Projects
Commit 4122a70d authored by podlesny's avatar podlesny
Browse files

{} consistency

parent ae169cdc
No related branches found
No related tags found
No related merge requests found
...@@ -78,8 +78,9 @@ class GlobalFriction { ...@@ -78,8 +78,9 @@ class GlobalFriction {
ScalarVector coefficientOfFriction(Vector const &x) const { ScalarVector coefficientOfFriction(Vector const &x) const {
ScalarVector ret(x.size()); ScalarVector ret(x.size());
for (size_t i = 0; i < x.size(); ++i) for (size_t i = 0; i < x.size(); ++i) {
ret[i] = restriction(i).coefficientOfFriction(x[i]); ret[i] = restriction(i).coefficientOfFriction(x[i]);
}
return ret; return ret;
} }
......
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