Compile with VS2005 in debug mode
This commit is contained in:
parent
83edcb2949
commit
1d4aaa2f0d
1 changed files with 7 additions and 1 deletions
|
@ -62,11 +62,17 @@ public:
|
||||||
{
|
{
|
||||||
return a->type() < b;
|
return a->type() < b;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool operator()(const FGPositioned::Type a, const FGPositioned* b) const
|
bool operator()(const FGPositioned::Type a, const FGPositioned* b) const
|
||||||
{
|
{
|
||||||
return a < b->type();
|
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();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue