From 6e7684032371a3dfe1d837e82ad5575fe09ce814 Mon Sep 17 00:00:00 2001 From: "Stephan T. Lavavej" Date: Thu, 27 Jul 2017 21:16:37 +0000 Subject: [PATCH] [libcxx] [test] Remove an unused local typedef in enable_shared_from_this.pass.cpp. Trivial change, committed without review. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@309322 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../util.smartptr.enab/enable_shared_from_this.pass.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp b/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp index eb0d0a955..26a7d3a94 100644 --- a/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp +++ b/test/std/utilities/memory/util.smartptr/util.smartptr.enab/enable_shared_from_this.pass.cpp @@ -80,7 +80,6 @@ int main() } { typedef std::shared_ptr APtr; - typedef std::weak_ptr WeakAPtr; APtr a1 = std::make_shared(); assert(a1.use_count() == 1); }