Fix unused variable warning.
authorChristian Duvivier <cduvivier@google.com>
Fri, 30 May 2014 17:03:46 +0000 (10:03 -0700)
committerChristian Duvivier <cduvivier@google.com>
Fri, 30 May 2014 17:27:44 +0000 (10:27 -0700)
Change-Id: I52f73943194039697da6880d2da54821b2498336

third_party/googletest/README.libvpx
third_party/googletest/src/src/gtest-all.cc

index 6fdeb87..7201a67 100644 (file)
@@ -12,4 +12,4 @@ failures, various options for running the tests, and XML test report
 generation.
 
 Local Modifications:
-None.
\ No newline at end of file
+Removed unused declarations of kPathSeparatorString to have warning free build.
\ No newline at end of file
index a9a03b2..8d90627 100644 (file)
@@ -7904,7 +7904,6 @@ namespace internal {
 // of them.
 const char kPathSeparator = '\\';
 const char kAlternatePathSeparator = '/';
-const char kPathSeparatorString[] = "\\";
 const char kAlternatePathSeparatorString[] = "/";
 # if GTEST_OS_WINDOWS_MOBILE
 // Windows CE doesn't have a current directory. You should not use
@@ -7918,7 +7917,6 @@ const char kCurrentDirectoryString[] = ".\\";
 # endif  // GTEST_OS_WINDOWS_MOBILE
 #else
 const char kPathSeparator = '/';
-const char kPathSeparatorString[] = "/";
 const char kCurrentDirectoryString[] = "./";
 #endif  // GTEST_OS_WINDOWS