"vscode:/vscode.git/clone" did not exist on "cb455a71fb23303e37ce8ee5b1cde6a2c18f66a5"
Commit 0f3d673b authored by kosak's avatar kosak
Browse files

fully-qualify use of scoped_ptr name

parent 1197daf3
...@@ -58,7 +58,6 @@ using testing::internal::ThreadWithParam; ...@@ -58,7 +58,6 @@ using testing::internal::ThreadWithParam;
#endif #endif
namespace posix = ::testing::internal::posix; namespace posix = ::testing::internal::posix;
using testing::internal::scoped_ptr;
// Tests catching fatal failures. // Tests catching fatal failures.
...@@ -515,7 +514,8 @@ class DeathTestAndMultiThreadsTest : public testing::Test { ...@@ -515,7 +514,8 @@ class DeathTestAndMultiThreadsTest : public testing::Test {
private: private:
SpawnThreadNotifications notifications_; SpawnThreadNotifications notifications_;
scoped_ptr<ThreadWithParam<SpawnThreadNotifications*> > thread_; testing::internal::scoped_ptr<ThreadWithParam<SpawnThreadNotifications*> >
thread_;
}; };
#endif // GTEST_IS_THREADSAFE #endif // GTEST_IS_THREADSAFE
......
...@@ -287,7 +287,6 @@ using testing::internal::edit_distance::CreateUnifiedDiff; ...@@ -287,7 +287,6 @@ using testing::internal::edit_distance::CreateUnifiedDiff;
using testing::internal::edit_distance::EditType; using testing::internal::edit_distance::EditType;
using testing::internal::kMaxRandomSeed; using testing::internal::kMaxRandomSeed;
using testing::internal::kTestTypeIdInGoogleTest; using testing::internal::kTestTypeIdInGoogleTest;
using testing::internal::scoped_ptr;
using testing::kMaxStackTraceDepth; using testing::kMaxStackTraceDepth;
#if GTEST_HAS_STREAM_REDIRECTION #if GTEST_HAS_STREAM_REDIRECTION
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment