1
0
Fork 0

MSVC 10 compile fix

This commit is contained in:
Frederic Bouvier 2012-11-10 18:41:07 +01:00
parent 92cb090ead
commit 9fa7f645d9
2 changed files with 4 additions and 2 deletions

View file

@ -30,6 +30,8 @@
#include <simgear/debug/logstream.hxx>
#include "tgconstruct.hxx"
const static double TGConstruct::gSnap = 0.00000001; // approx 1 mm
// Constructor
TGConstruct::TGConstruct():
ignoreLandmass(false),
@ -225,4 +227,4 @@ void TGConstruct::ConstructBucketStage3() {
// Write Custom objects to .stg file
AddCustomObjects();
}
}
}

View file

@ -70,7 +70,7 @@ private:
std::vector<std::string> load_dirs;
const static double gSnap = 0.00000001; // approx 1 mm
const static double gSnap; // approx 1 mm
// flag indicating whether to ignore the landmass
bool ignoreLandmass;