summaryrefslogtreecommitdiff
path: root/test/SemaObjC/builtin_objc_lib_functions.m
diff options
context:
space:
mode:
authorJean-Daniel Dupas <devlists@shadowlab.org>2012-01-24 22:29:27 +0000
committerJean-Daniel Dupas <devlists@shadowlab.org>2012-01-24 22:29:27 +0000
commit9bc4fc4ee96f6da0e7be3edfdedd45912e5f1161 (patch)
treeb91f30da4f60055aa246d9186e6a8856193a4339 /test/SemaObjC/builtin_objc_lib_functions.m
parent2c3038edc2a691b2462ef4bc7fae8f4c9a494154 (diff)
downloadclang-9bc4fc4ee96f6da0e7be3edfdedd45912e5f1161.tar.gz
Remove trailing slash in front of header name of ObjC builtins.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@148872 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaObjC/builtin_objc_lib_functions.m')
-rw-r--r--test/SemaObjC/builtin_objc_lib_functions.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SemaObjC/builtin_objc_lib_functions.m b/test/SemaObjC/builtin_objc_lib_functions.m
index 02b05b95b8..1aa5c75b7c 100644
--- a/test/SemaObjC/builtin_objc_lib_functions.m
+++ b/test/SemaObjC/builtin_objc_lib_functions.m
@@ -20,10 +20,10 @@ id f4(struct objc_super *super, SEL op) { // expected-warning {{declaration of '
id f5(id val, id *dest) {
return objc_assign_strongCast(val, dest); // expected-warning {{implicitly declaring C library function 'objc_assign_strongCast' with type 'id (id, id *)'}} \
- // expected-note {{please include the header </objc/objc-auto.h> or explicitly provide a declaration for 'objc_assign_strongCast'}}
+ // expected-note {{please include the header <objc/objc-auto.h> or explicitly provide a declaration for 'objc_assign_strongCast'}}
}
int f6(Class exceptionClass, id exception) {
return objc_exception_match(exceptionClass, exception); // expected-warning {{implicitly declaring C library function 'objc_exception_match' with type 'int (id, id)'}} \
- // expected-note {{please include the header </objc/objc-exception.h> or explicitly provide a declaration for 'objc_exception_match'}}
+ // expected-note {{please include the header <objc/objc-exception.h> or explicitly provide a declaration for 'objc_exception_match'}}
}