From 53fa04909cd51ee3cbcf09ad4f8dcb9b03d3f199 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 5 Sep 2010 00:04:01 +0000 Subject: make clang print types as "const int *" instead of "int const*", which is should have done from the beginning. As usual, the most fun with this sort of change is updating all the testcases. llvm-svn: 113090 --- clang/test/SemaCXX/class.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'clang/test/SemaCXX/class.cpp') diff --git a/clang/test/SemaCXX/class.cpp b/clang/test/SemaCXX/class.cpp index 9d9508b8ef4..e51d0fdff97 100644 --- a/clang/test/SemaCXX/class.cpp +++ b/clang/test/SemaCXX/class.cpp @@ -89,7 +89,7 @@ struct C3 { void f() { const C3 c3 = { 1, 2 }; - (void)static_cast(&c3.i); // expected-error {{static_cast from 'int const *' to 'int *' is not allowed}} + (void)static_cast(&c3.i); // expected-error {{static_cast from 'const int *' to 'int *' is not allowed}} // but no error here (void)static_cast(&c3.j); } -- cgit v1.2.3