A couple minor MSVC tweaks contributed by Jonathan Polley
This commit is contained in:
parent
e75f6a8f01
commit
28d8191dae
2 changed files with 5 additions and 2 deletions
|
@ -32,7 +32,6 @@
|
|||
|
||||
SG_USING_STD(vector);
|
||||
SG_USING_STD(string);
|
||||
SG_USING_NAMESPACE(std);
|
||||
|
||||
struct atcMessage {
|
||||
string msg;
|
||||
|
@ -42,7 +41,7 @@ struct atcMessage {
|
|||
|
||||
// ASSUMPTION - with two radios the list won't be long so we don't need to map the id's
|
||||
typedef vector<atcMessage> atcMessageList;
|
||||
typedef vector<atcMessage>::iterator atcMessageListIterator;
|
||||
typedef atcMessageList::iterator atcMessageListIterator;
|
||||
|
||||
class FGATCDisplay {
|
||||
|
||||
|
|
|
@ -173,6 +173,10 @@ bool FGNewCache::make_space() {
|
|||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
SG_LOG( SG_TERRAIN, SG_ALERT, "WHOOPS!!! Hit an unhandled condition in "
|
||||
"FGNewCache::make_space()." );
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue