From 350bda6eb2da633b0008729c6515a8684f1a0276 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 4 Dec 2013 05:39:55 +0000 Subject: [PATCH] Fixed a couple of test errors; changed 'const A const *' to 'const A* const'. Thanks to Nico for the catch llvm-svn: 196355 --- libcxxabi/test/catch_const_pointer_nullptr.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcxxabi/test/catch_const_pointer_nullptr.cpp b/libcxxabi/test/catch_const_pointer_nullptr.cpp index c9d5acf72a86..412bbe75f37a 100644 --- a/libcxxabi/test/catch_const_pointer_nullptr.cpp +++ b/libcxxabi/test/catch_const_pointer_nullptr.cpp @@ -53,7 +53,7 @@ void test3() throw nullptr; assert(false); } - catch (const A const*) + catch (const A* const) { } catch (A*) @@ -72,7 +72,7 @@ void test4() catch (A*) { } - catch (const A const*) + catch (const A* const) { assert(false); }