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.
15 lines
294 B
C
15 lines
294 B
C
8 years ago
|
#ifndef GTESTWRAPPER_H_
|
||
|
#define GTESTWRAPPER_H_
|
||
|
|
||
|
#ifdef _MSC_VER
|
||
|
#pragma warning(push)
|
||
|
#pragma warning(disable : 4251)
|
||
|
#pragma warning(disable : 4275)
|
||
|
#endif
|
||
|
#include <gtest/gtest.h>
|
||
|
#ifdef _MSC_VER
|
||
|
#pragma warning(pop)
|
||
|
#endif
|
||
|
|
||
|
#endif // #ifndef GTESTWRAPPER_H_
|