[libcxx] [test] Remove an unused local typedef in enable_shared_from_this.pass.cpp.

Trivial change, committed without review.

llvm-svn: 309322
This commit is contained in:
Stephan T. Lavavej 2017-07-27 21:16:37 +00:00
parent 83012b4721
commit f85e2e218a

View File

@ -80,7 +80,6 @@ int main()
}
{
typedef std::shared_ptr<PrivateBase> APtr;
typedef std::weak_ptr<PrivateBase> WeakAPtr;
APtr a1 = std::make_shared<PrivateBase>();
assert(a1.use_count() == 1);
}