diff options
author | Jay Foad <jay.foad@gmail.com> | 2011-07-27 09:25:14 +0000 |
---|---|---|
committer | Jay Foad <jay.foad@gmail.com> | 2011-07-27 09:25:14 +0000 |
commit | b33f8e3e55932d0e15a686ef0c598da8dbc37acd (patch) | |
tree | f3e92afe6a0cfa7683d6b9e63799c18542ab68ea /utils/unittest/googletest/gtest-typed-test.cc | |
parent | a44defeb2208376ca3113ffdddc391570ba865b8 (diff) |
Merge gtest-1.6.0.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136212 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/unittest/googletest/gtest-typed-test.cc')
-rw-r--r-- | utils/unittest/googletest/gtest-typed-test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/unittest/googletest/gtest-typed-test.cc b/utils/unittest/googletest/gtest-typed-test.cc index 3cc4b5de2a..a5cc88f920 100644 --- a/utils/unittest/googletest/gtest-typed-test.cc +++ b/utils/unittest/googletest/gtest-typed-test.cc @@ -29,8 +29,8 @@ // // Author: wan@google.com (Zhanyong Wan) -#include <gtest/gtest-typed-test.h> -#include <gtest/gtest.h> +#include "gtest/gtest-typed-test.h" +#include "gtest/gtest.h" namespace testing { namespace internal { @@ -40,7 +40,7 @@ namespace internal { // Skips to the first non-space char in str. Returns an empty string if str // contains only whitespace characters. static const char* SkipSpaces(const char* str) { - while (isspace(*str)) + while (IsSpace(*str)) str++; return str; } |