Skip to content
Snippets Groups Projects
Commit 12457f81 authored by Lars Bilke's avatar Lars Bilke
Browse files

Merge pull request #202 from norihiro-w/fix-warning-guass-quadrature

Fix a compiler warning after merging GaussLedgendre
parents 831a39aa eb086f1f
No related branches found
No related tags found
No related merge requests found
...@@ -55,9 +55,8 @@ std::pair<double, double> GaussLegendre::getPoint(unsigned n_sample_points, unsi ...@@ -55,9 +55,8 @@ std::pair<double, double> GaussLegendre::getPoint(unsigned n_sample_points, unsi
return std::make_pair(-0.861136311594053, 0.347854845137454); return std::make_pair(-0.861136311594053, 0.347854845137454);
} }
break; break;
default:
return std::make_pair(0.0, 0.0);
} }
return std::make_pair(0.0, 0.0);
} }
......
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