[llvm-commits] [llvm] r168729 - /llvm/trunk/utils/unittest/googletest/gtest-filepath.cc
Richard Smith
richard-llvm at metafoo.co.uk
Tue Nov 27 13:51:37 PST 2012
Author: rsmith
Date: Tue Nov 27 15:51:36 2012
New Revision: 168729
URL: http://llvm.org/viewvc/llvm-project?rev=168729&view=rev
Log:
Remove unused internal linkage variable.
Modified:
llvm/trunk/utils/unittest/googletest/gtest-filepath.cc
Modified: llvm/trunk/utils/unittest/googletest/gtest-filepath.cc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/unittest/googletest/gtest-filepath.cc?rev=168729&r1=168728&r2=168729&view=diff
==============================================================================
--- llvm/trunk/utils/unittest/googletest/gtest-filepath.cc (original)
+++ llvm/trunk/utils/unittest/googletest/gtest-filepath.cc Tue Nov 27 15:51:36 2012
@@ -69,7 +69,6 @@
// 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
@@ -83,7 +82,6 @@
# endif // GTEST_OS_WINDOWS_MOBILE
#else
const char kPathSeparator = '/';
-const char kPathSeparatorString[] = "/";
const char kCurrentDirectoryString[] = "./";
#endif // GTEST_OS_WINDOWS
More information about the llvm-commits
mailing list