MSVC 10 compile fix
This commit is contained in:
parent
92cb090ead
commit
9fa7f645d9
2 changed files with 4 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue