mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
disable VS8 warning about unsafe library functions - in this case sprinf
This commit is contained in:
parent
59cf7db05e
commit
07b7e8e9bb
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,6 @@
|
|||
#ifdef _MSC_VER
|
||||
#pragma warning(disable: 4996)
|
||||
#endif
|
||||
|
||||
#include <exception>
|
||||
#include <stdexcept>
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable: 4996)
|
||||
#endif
|
||||
|
||||
#include "TextTestResult.h"
|
||||
#include "../framework/CppUnitException.h"
|
||||
|
|
Loading…
Reference in a new issue