diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-05-03 21:44:12 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-05-03 21:44:12 +0000 |
commit | 2e7f638b23788c0efc611cc68ca7747c0ad9afed (patch) | |
tree | 951d47aee565cb12c2bffc95321c73ea81744454 /clang/test/Rewriter/rewrite-byref-in-nested-blocks.mm | |
parent | 45cf50f7b69614f73b2b6268760935cc6d30f200 (diff) | |
download | bcm5719-llvm-2e7f638b23788c0efc611cc68ca7747c0ad9afed.tar.gz bcm5719-llvm-2e7f638b23788c0efc611cc68ca7747c0ad9afed.zip |
modern objc translator: used size_t in couple
of places. // rdar://11375908
llvm-svn: 156106
Diffstat (limited to 'clang/test/Rewriter/rewrite-byref-in-nested-blocks.mm')
-rw-r--r-- | clang/test/Rewriter/rewrite-byref-in-nested-blocks.mm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/Rewriter/rewrite-byref-in-nested-blocks.mm b/clang/test/Rewriter/rewrite-byref-in-nested-blocks.mm index 1583945b2c9..15b91073421 100644 --- a/clang/test/Rewriter/rewrite-byref-in-nested-blocks.mm +++ b/clang/test/Rewriter/rewrite-byref-in-nested-blocks.mm @@ -4,6 +4,9 @@ // RUN: %clang_cc1 -fsyntax-only -Werror -Wno-address-of-temporary -D"SEL=void*" -U__declspec -D"__declspec(X)=" %t-modern-rw.cpp // radar 7692350 +// rdar://11375908 +typedef unsigned long size_t; + void f(void (^block)(void)); @interface X { |