diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-01-31 11:52:52 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-01-31 11:52:52 +0000 |
commit | e1cd3374a8762d56c49d9abbc0c973a99e236422 (patch) | |
tree | 5fc2aeb863421d4aa1c5bbcc99062775b49b8584 | |
parent | c099d9bc4842afc0e724eddab661cbb386c82117 (diff) |
Fix my dyslexia.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94958 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/SemaCXX/static-cast.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SemaCXX/static-cast.cpp b/test/SemaCXX/static-cast.cpp index 812f280735..d41b929ee6 100644 --- a/test/SemaCXX/static-cast.cpp +++ b/test/SemaCXX/static-cast.cpp @@ -180,4 +180,4 @@ struct X4 { }; // PR5897 - accept static_cast from const void* to const int (*)[1]. -void PR5879() { (void)static_cast<const int(*)[1]>((const void*)0); } +void PR5897() { (void)static_cast<const int(*)[1]>((const void*)0); } |