1
0
Fork 0

Compile with VS2005 in debug mode

This commit is contained in:
fredb 2009-02-22 08:23:11 +00:00 committed by Tim Moore
parent 83edcb2949
commit 1d4aaa2f0d

View file

@ -62,11 +62,17 @@ public:
{
return a->type() < b;
}
bool operator()(const FGPositioned::Type a, const FGPositioned* b) const
{
return a < b->type();
}
// The operator below is required by VS2005 in debug mode
bool operator()(const FGPositioned* a, const FGPositioned* b) const
{
return a->type() < b->type();
}
};