Fix unused variable warning.

Change-Id: I52f73943194039697da6880d2da54821b2498336
This commit is contained in:
Christian Duvivier 2014-05-30 10:03:46 -07:00
parent d009c2360e
commit 8db1f7ad0c
2 changed files with 1 additions and 3 deletions

View File

@ -12,4 +12,4 @@ failures, various options for running the tests, and XML test report
generation. generation.
Local Modifications: Local Modifications:
None. Removed unused declarations of kPathSeparatorString to have warning free build.

View File

@ -7904,7 +7904,6 @@ namespace internal {
// of them. // of them.
const char kPathSeparator = '\\'; const char kPathSeparator = '\\';
const char kAlternatePathSeparator = '/'; const char kAlternatePathSeparator = '/';
const char kPathSeparatorString[] = "\\";
const char kAlternatePathSeparatorString[] = "/"; const char kAlternatePathSeparatorString[] = "/";
# if GTEST_OS_WINDOWS_MOBILE # if GTEST_OS_WINDOWS_MOBILE
// Windows CE doesn't have a current directory. You should not use // Windows CE doesn't have a current directory. You should not use
@ -7918,7 +7917,6 @@ const char kCurrentDirectoryString[] = ".\\";
# endif // GTEST_OS_WINDOWS_MOBILE # endif // GTEST_OS_WINDOWS_MOBILE
#else #else
const char kPathSeparator = '/'; const char kPathSeparator = '/';
const char kPathSeparatorString[] = "/";
const char kCurrentDirectoryString[] = "./"; const char kCurrentDirectoryString[] = "./";
#endif // GTEST_OS_WINDOWS #endif // GTEST_OS_WINDOWS