Fix enable_shared_from_this test in C++11

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@302721 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier
2017-05-10 20:09:20 +00:00
parent f6e8a9c876
commit 74424d09b4

View File

@@ -50,7 +50,6 @@ struct Bar : public Foo {
struct PrivateBase : private std::enable_shared_from_this<PrivateBase> {
std::weak_ptr<PrivateBase> get_weak() { return weak_from_this(); }
};