disable VS8 warning about unsafe library functions - in this case sprinf

This commit is contained in:
jez 2007-08-29 02:01:08 +00:00
parent 59cf7db05e
commit 07b7e8e9bb
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,6 @@
#ifdef _MSC_VER
#pragma warning(disable: 4996)
#endif
#include <exception>
#include <stdexcept>

View file

@ -1,4 +1,7 @@
#ifdef _MSC_VER
#pragma warning(disable: 4996)
#endif
#include "TextTestResult.h"
#include "../framework/CppUnitException.h"