Adding code x3
This commit is contained in:
@@ -4,4 +4,13 @@
|
||||
GTEST_API_ int main(int argc, char** argv) {
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef __WIN32
|
||||
extern "C" {
|
||||
int wmain(int argc, wchar_t* argv[])
|
||||
{
|
||||
return main(argc, reinterpret_cast<char **>(argv));
|
||||
}
|
||||
};
|
||||
#endif
|
Reference in New Issue
Block a user