diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-10-19 20:30:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-19 20:30:13 (GMT) |
commit | c955e33497965a90c936a221610bdfb7fad3ca49 (patch) | |
tree | 803c4727654f51b8e70071f54498903a93ecb724 /googlemock/include/gmock/internal/gmock-internal-utils.h | |
parent | 3149e0e88bf09841009851a478dd835fc557aaa1 (diff) | |
parent | f410177a8b54705bb5efaa7be4ef322153349187 (diff) | |
download | googletest-c955e33497965a90c936a221610bdfb7fad3ca49.zip googletest-c955e33497965a90c936a221610bdfb7fad3ca49.tar.gz googletest-c955e33497965a90c936a221610bdfb7fad3ca49.tar.bz2 |
Merge branch 'master' into python3-testsrefs/pull/1839/head
Diffstat (limited to 'googlemock/include/gmock/internal/gmock-internal-utils.h')
-rw-r--r-- | googlemock/include/gmock/internal/gmock-internal-utils.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/googlemock/include/gmock/internal/gmock-internal-utils.h b/googlemock/include/gmock/internal/gmock-internal-utils.h index db64c65..fd33c00 100644 --- a/googlemock/include/gmock/internal/gmock-internal-utils.h +++ b/googlemock/include/gmock/internal/gmock-internal-utils.h @@ -493,7 +493,7 @@ class StlContainerView<Element[N]> { // This specialization is used when RawContainer is a native array // represented as a (pointer, size) tuple. template <typename ElementPointer, typename Size> -class StlContainerView< ::testing::tuple<ElementPointer, Size> > { +class StlContainerView< ::std::tuple<ElementPointer, Size> > { public: typedef GTEST_REMOVE_CONST_( typename internal::PointeeOf<ElementPointer>::type) RawElement; @@ -501,11 +501,12 @@ class StlContainerView< ::testing::tuple<ElementPointer, Size> > { typedef const type const_reference; static const_reference ConstReference( - const ::testing::tuple<ElementPointer, Size>& array) { - return type(get<0>(array), get<1>(array), RelationToSourceReference()); + const ::std::tuple<ElementPointer, Size>& array) { + return type(std::get<0>(array), std::get<1>(array), + RelationToSourceReference()); } - static type Copy(const ::testing::tuple<ElementPointer, Size>& array) { - return type(get<0>(array), get<1>(array), RelationToSourceCopy()); + static type Copy(const ::std::tuple<ElementPointer, Size>& array) { + return type(std::get<0>(array), std::get<1>(array), RelationToSourceCopy()); } }; |