mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-03 01:50:24 +08:00
git-svn-id: http://rtabmap.googlecode.com/svn/branches/0.3/rtabmap@52 f169173b-cf89-36c8-b27e-44dbe73f0c83
15 lines
290 B
C
15 lines
290 B
C
#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
|