diff options
| author | Olivier Goffart <ogoffart@woboq.com> | 2015-01-09 09:42:32 +0000 |
|---|---|---|
| committer | Olivier Goffart <ogoffart@woboq.com> | 2015-01-09 09:42:32 +0000 |
| commit | aabcb80096e4e3dcbbb36a2c913d17ac3f7fcddc (patch) | |
| tree | 817cc8a7f35d8a2b5af710627d3524d4ada26cbc | |
| parent | 02e764487fa4a8e22e5ef3e8b2ab9c8361454b69 (diff) | |
| download | bcm5719-llvm-aabcb80096e4e3dcbbb36a2c913d17ac3f7fcddc.tar.gz bcm5719-llvm-aabcb80096e4e3dcbbb36a2c913d17ac3f7fcddc.zip | |
Fix test from my previous commit
(I should have re-run the test after running clang-format)
llvm-svn: 225515
| -rw-r--r-- | clang/test/Sema/typo-correction.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Sema/typo-correction.c b/clang/test/Sema/typo-correction.c index d8524b9d234..df7da797f05 100644 --- a/clang/test/Sema/typo-correction.c +++ b/clang/test/Sema/typo-correction.c @@ -19,7 +19,7 @@ struct ContainerStuct { void func(int arg) { switch (arg) { - case SOME_ENUM_: - ; // expected-error {{use of undeclared identifier 'SOME_ENUM_'; did you mean 'SOME_ENUM'}} + case SOME_ENUM_: // expected-error {{use of undeclared identifier 'SOME_ENUM_'; did you mean 'SOME_ENUM'}} + ; } } |

