From 62f123445722414127bffc10865cc2e34acfc608 Mon Sep 17 00:00:00 2001
From: Patrick Beard
Date: Tue, 20 Mar 2012 21:51:03 +0000
Subject: [PATCH] Added summary section for Object Literals and Subscripting,
which contains the external link.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153141 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/LanguageExtensions.html | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html
index 19a776827d..d7e4931b8c 100644
--- a/docs/LanguageExtensions.html
+++ b/docs/LanguageExtensions.html
@@ -89,7 +89,7 @@
Automatic reference counting
Enumerations with a fixed underlying type
Interoperability with C++11 lambdas
- Object Literals and Subscripting
+ Object Literals and Subscripting
Function Overloading in C
@@ -1134,6 +1134,12 @@ copying a block to the heap in the common case.
in Objective-C++, and not in C++ with blocks, due to its use of
Objective-C memory management (autorelease).
+
+Object Literals and Subscripting
+
+
+Clang provides support for Object Literals and Subscripting in Objective-C, which simplifies common Objective-C programming patterns, make programs more concise, and improves the safety of container creation. There are several feature macros associated with object literals and subscripting: __has_feature(objc_array_literals)
tests the availability of array literals; __has_feature(objc_dictionary_literals)
tests the availability of dictionary literals; __has_feature(objc_subscripting)
tests the availability of of object subscripting.
+
Function Overloading in C
--
2.40.0