You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
334 B
C
16 lines
334 B
C
#ifndef GTESTWRAPPER_H_
|
|
#define GTESTWRAPPER_H_
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(push)
|
|
#pragma warning(disable : 4251)
|
|
#pragma warning(disable : 4275)
|
|
#pragma warning(disable : 4996)
|
|
#endif
|
|
#include <gtest/gtest.h>
|
|
#ifdef _MSC_VER
|
|
#pragma warning(pop)
|
|
#endif
|
|
|
|
#endif // #ifndef GTESTWRAPPER_H_
|