1
0
Fork 0

A couple minor MSVC tweaks contributed by Jonathan Polley

This commit is contained in:
curt 2002-01-17 00:03:02 +00:00
parent e75f6a8f01
commit 28d8191dae
2 changed files with 5 additions and 2 deletions

View file

@ -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 {

View file

@ -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;
}