diff options
-rw-r--r-- | docs/LanguageExtensions.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html index 92db81f2bb..0b99263bba 100644 --- a/docs/LanguageExtensions.html +++ b/docs/LanguageExtensions.html @@ -1202,6 +1202,16 @@ dictionary literals; <code>__has_feature(objc_subscripting)</code> tests the availability of object subscripting.</p> <!-- ======================================================================= --> +<h2 id="objc_default_synthesize_properties">Objective-C Autosynthesis of Properties</h2> +<!-- ======================================================================= --> + +<p> Clang provides support for autosynthesis of declared properties. Using this +feature, clang provides default synthesis of those properties not declared @dynamic +and not having user provided backing getter and setter methods. +<code>__has_feature(objc_default_synthesize_properties)</code> checks for availability +of this feature in version of clang being used.</p> + +<!-- ======================================================================= --> <h2 id="overloading-in-c">Function Overloading in C</h2> <!-- ======================================================================= --> |