diff options
author | kosak <kosak@google.com> | 2013-12-03 22:38:22 (GMT) |
---|---|---|
committer | kosak <kosak@google.com> | 2013-12-03 22:38:22 (GMT) |
commit | 37b97d1c93fb8283f8bbf54f5618c1c1e5a4726a (patch) | |
tree | 0949bd9f08f265d8b29d513095775a69964dee0e /src/gtest-filepath.cc | |
parent | aa34ae250800af7e98499abba44636503cf99b16 (diff) | |
download | googletest-37b97d1c93fb8283f8bbf54f5618c1c1e5a4726a.zip googletest-37b97d1c93fb8283f8bbf54f5618c1c1e5a4726a.tar.gz googletest-37b97d1c93fb8283f8bbf54f5618c1c1e5a4726a.tar.bz2 |
Add MemorySanitizer annotations in gtest printers. Also remove unused variable kPathSeparatorString.
Diffstat (limited to 'src/gtest-filepath.cc')
-rw-r--r-- | src/gtest-filepath.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gtest-filepath.cc b/src/gtest-filepath.cc index 6be58b6..d221cfd 100644 --- a/src/gtest-filepath.cc +++ b/src/gtest-filepath.cc @@ -70,7 +70,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 @@ -84,7 +83,6 @@ const char kCurrentDirectoryString[] = ".\\"; # endif // GTEST_OS_WINDOWS_MOBILE #else const char kPathSeparator = '/'; -const char kPathSeparatorString[] = "/"; const char kCurrentDirectoryString[] = "./"; #endif // GTEST_OS_WINDOWS |