Update of /cvsroot/gcblue/gcb_wx/src/database
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32375
Modified Files:
tcDatabase.cpp tcFlightportDBObject.cpp tcGenericDBObject.cpp
Log Message:
+ changed #include "aerror.h" to "AError.h"
+ added #ifdef MSVC where needed
Index: tcFlightportDBObject.cpp
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcFlightportDBObject.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** tcFlightportDBObject.cpp 28 Mar 2004 23:12:28 -0000 1.2
--- tcFlightportDBObject.cpp 9 Apr 2004 14:17:42 -0000 1.3
***************
*** 20,24 ****
--- 20,26 ----
#include "stdwx.h"
+ #if _MSC_VER > 1000
#pragma warning(disable:4786) // suppress warning for STL bug in VC6, see Q167355 in the MSDN Library.
+ #endif
#include "tcFlightportDBObject.h"
***************
*** 240,242 ****
}
! }
\ No newline at end of file
--- 242,244 ----
}
! }
Index: tcGenericDBObject.cpp
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcGenericDBObject.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** tcGenericDBObject.cpp 30 Mar 2004 01:15:21 -0000 1.7
--- tcGenericDBObject.cpp 9 Apr 2004 14:17:42 -0000 1.8
***************
*** 20,24 ****
--- 20,26 ----
#include "stdwx.h"
+ #if _MSC_VER > 1000
#pragma warning(disable:4786) // suppress warning for STL bug in VC6, see Q167355 in the MSDN Library.
+ #endif
#include "tcGenericDBObject.h"
***************
*** 473,475 ****
}
! }
\ No newline at end of file
--- 475,477 ----
}
! }
Index: tcDatabase.cpp
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/src/database/tcDatabase.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** tcDatabase.cpp 28 Mar 2004 23:12:28 -0000 1.9
--- tcDatabase.cpp 9 Apr 2004 14:17:42 -0000 1.10
***************
*** 23,32 ****
#pragma warning(disable:4786) // suppress warning for STL bug in VC6, see Q167355 in the MSDN Library.
#include "tcDatabase.h"
#include "math_constants.h"
#include "randfn.h"
! #include "aerror.h"
#include <iostream>
#include <fstream>
--- 23,35 ----
+ #if _MSC_VER > 1000
#pragma warning(disable:4786) // suppress warning for STL bug in VC6, see Q167355 in the MSDN Library.
+ #endif
+
#include "tcDatabase.h"
#include "math_constants.h"
#include "randfn.h"
! #include "AError.h"
#include <iostream>
#include <fstream>
|