Patch #724 ยป config.h.cmake.patch
| config/config.h.cmake (working copy) | ||
|---|---|---|
| 243 | 243 |
Disable warnings about 'deprecated' standard functions |
| 244 | 244 |
See, eg. http://www.informit.com/guides/content.asp?g=cplusplus&seqNum=259 |
| 245 | 245 |
*/ |
| 246 |
#if _MSC_VER >= 1400 |
|
| 247 |
# pragma warning(disable : 4996 4251) |
|
| 248 |
#endif |
|
| 246 |
#ifdef WIN32 |
|
| 247 |
# if _MSC_VER >= 1400 |
|
| 248 |
# pragma warning(disable : 4996 4251) |
|
| 249 |
# endif |
|
| 250 |
#endif /* ! WIN32 */ |
|