summaryrefslogtreecommitdiffstats
blob: 2334601b5956e7d1a5094fe8ce6585e27a4ac886 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef CPPUNIT_CONFIG_H_INCLUDED
#define CPPUNIT_CONFIG_H_INCLUDED

#include <cppunit/Portability.h>

#ifdef _MSC_VER
#pragma warning(disable: 4018 4284 4146)
#if _MSC_VER >= 1400
#pragma warning(disable: 4996)		// sprintf is deprecated
#endif
#endif


#endif // CPPUNIT_CONFIG_H_INCLUDED