"tests/vscode:/vscode.git/clone" did not exist on "f57e7bd92c57bf59cba45496fc85ea77797bedcc"
Commit f019b7ad authored by Adrià Arrufat's avatar Adrià Arrufat Committed by Davis E. King
Browse files

Minor changes to avoid conflicts and warnings in visual studio.

parent ca3a0fdd
......@@ -18,6 +18,15 @@
* and png_info.
*/
#ifdef _MSC_VER
// Disable the following warnings for Visual Studio
// This is a warning you get from visual studio 2005 about things in the standard C++
// library being "deprecated." I checked the C++ standard and it doesn't say jack
// about any of them (I checked the searchable PDF). So this warning is total Bunk.
#pragma warning(disable : 4996)
#endif
#ifndef PNGCONF_H
#define PNGCONF_H
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment