Index: trunk/BNS/bns.cpp
===================================================================
--- trunk/BNS/bns.cpp	(revision 1099)
+++ trunk/BNS/bns.cpp	(revision 1100)
@@ -470,8 +470,8 @@
   dx(2) =  0.051;
   dx(3) = -0.048;
-  const static double arcSec = 180.0 * 3600.0 / M_PI;
-  const static double ox =  0.000081 / arcSec;
-  const static double oy =  0.000490 / arcSec;
-  const static double oz = -0.000792 / arcSec;
+  static const double arcSec = 180.0 * 3600.0 / M_PI;
+  static const double ox =  0.000081 / arcSec;
+  static const double oy =  0.000490 / arcSec;
+  static const double oz = -0.000792 / arcSec;
 
   Matrix rMat(3,3); rMat = 0.0;
Index: trunk/BNS/bnseph.cpp
===================================================================
--- trunk/BNS/bnseph.cpp	(revision 1099)
+++ trunk/BNS/bnseph.cpp	(revision 1100)
@@ -221,7 +221,7 @@
                         ColumnVector& vv) const {
 
-  const static double secPerWeek = 7 * 86400.0;
-  const static double omegaEarth = 7292115.1467e-11;
-  const static double gmWGS      = 398.6005e12;
+  static const double secPerWeek = 7 * 86400.0;
+  static const double omegaEarth = 7292115.1467e-11;
+  static const double gmWGS      = 398.6005e12;
 
   if (xc.Nrows() < 4) {
@@ -366,8 +366,8 @@
   // Acceleration 
   // ------------
-  const static double GM    = 398.60044e12;
-  const static double AE    = 6378136.0;
-  const static double OMEGA = 7292115.e-11;
-  const static double C20   = -1082.63e-6;
+  static const double GM    = 398.60044e12;
+  static const double AE    = 6378136.0;
+  static const double OMEGA = 7292115.e-11;
+  static const double C20   = -1082.63e-6;
 
   double rho = rr.norm_Frobenius();
@@ -396,6 +396,6 @@
                         ColumnVector& vv) const {
 
-  const static double secPerWeek  = 7 * 86400.0;
-  const static double nominalStep = 10.0;
+  static const double secPerWeek  = 7 * 86400.0;
+  static const double nominalStep = 10.0;
 
   double dtPos = GPSweeks - _tt;
Index: trunk/BNS/bnsutils.cpp
===================================================================
--- trunk/BNS/bnsutils.cpp	(revision 1099)
+++ trunk/BNS/bnsutils.cpp	(revision 1100)
@@ -98,5 +98,5 @@
 void mjdFromDateAndTime(const QDateTime& dateTime, int& mjd, double& dayfrac) {
 
-  const static QDate zeroDate(1858, 11, 17);
+  static const QDate zeroDate(1858, 11, 17);
 
   mjd     = zeroDate.daysTo(dateTime.date());
