Skip to content
Snippets Groups Projects
Commit a360a78e authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

inline functions to avoid linking problems

parent cf502f3f
No related branches found
No related tags found
2 merge requests!20new tag,!19new tag
This commit is part of merge request !20. Comments created here will be created in the context of that merge request.
......@@ -13,7 +13,7 @@
namespace GnssUtils
{
double chisq2ci(double chisq, int dof)
inline double chisq2ci(double chisq, int dof)
{
assert(dof > 0);
......@@ -33,7 +33,7 @@ double chisq2ci(double chisq, int dof)
return lower->second + (chisq - lower->first) / (upper->first - lower->first) * (upper->second - lower->second);
};
double ci2chisq(double ci, int dof)
inline double ci2chisq(double ci, int dof)
{
assert(dof > 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