mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
Fix compilation
svn path=/trunk/; revision=25532
This commit is contained in:
parent
4faf77f9ca
commit
f4947f0064
1 changed files with 7 additions and 4 deletions
|
@ -25,12 +25,19 @@
|
|||
// Martin Fuchs, 23.07.2003
|
||||
//
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable: 4786) // disable warnings about too long debug information symbols
|
||||
#endif
|
||||
|
||||
// STL headers for strings and streams
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
#endif /* __cplusplus */
|
||||
|
||||
|
||||
// standard windows headers
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
|
@ -196,10 +203,6 @@ BOOL exists_path(LPCTSTR path);
|
|||
|
||||
#ifdef __cplusplus
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable: 4786) // disable warnings about too long debug information symbols
|
||||
#endif
|
||||
|
||||
// containers
|
||||
#include <map>
|
||||
#include <set>
|
||||
|
|
Loading…
Reference in a new issue