]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/YASim/Math.cpp
Fix bug 141, by ensuring certain subsystems are assigned to the 'post FDM' group...
[flightgear.git] / src / FDM / YASim / Math.cpp
index c7203941c95215a8450d139c7f5669f5f5204d7d..2c53c35590fdbbc30e1be9f180803d17acee0c76 100644 (file)
@@ -80,6 +80,11 @@ float Math::pow(double base, double exp)
     return (float)::pow(base, exp);
 }
 
+float Math::exp(float f)
+{
+    return (float)::exp(f);
+}
+
 double Math::ceil(double f)
 {
     return ::ceil(f);