1
0
mirror of synced 2025-07-27 23:41:48 +03:00

Fixed warnings in googletest

This commit is contained in:
yhirose
2019-06-05 11:32:22 -04:00
parent 6f207497de
commit 93086957a9
2 changed files with 13 additions and 3 deletions

View File

@ -601,7 +601,7 @@ class GTestFlagSaver {
bool list_tests_;
String output_;
bool print_time_;
bool pretty_;
// bool pretty_;
internal::Int32 random_seed_;
internal::Int32 repeat_;
bool shuffle_;
@ -7497,7 +7497,7 @@ namespace internal {
// of them.
const char kPathSeparator = '\\';
const char kAlternatePathSeparator = '/';
const char kPathSeparatorString[] = "\\";
// const char kPathSeparatorString[] = "\\";
const char kAlternatePathSeparatorString[] = "/";
# if GTEST_OS_WINDOWS_MOBILE
// Windows CE doesn't have a current directory. You should not use
@ -7511,7 +7511,7 @@ const char kCurrentDirectoryString[] = ".\\";
# endif // GTEST_OS_WINDOWS_MOBILE
#else
const char kPathSeparator = '/';
const char kPathSeparatorString[] = "/";
// const char kPathSeparatorString[] = "/";
const char kCurrentDirectoryString[] = "./";
#endif // GTEST_OS_WINDOWS