From: Fariborz Jahanian Date: Mon, 18 Jun 2012 17:13:17 +0000 (+0000) Subject: document _has_feature(objc_default_synthesize_properties). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=790880bc3a0d8a176f1bdea4e79f60f5c7c2b2d7;p=clang document _has_feature(objc_default_synthesize_properties). // rdar://11676972 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158665 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html index 92db81f2bb..0b99263bba 100644 --- a/docs/LanguageExtensions.html +++ b/docs/LanguageExtensions.html @@ -1201,6 +1201,16 @@ tests the availability of array literals; dictionary literals; __has_feature(objc_subscripting) tests the availability of object subscripting.

+ +

Objective-C Autosynthesis of Properties

+ + +

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. +__has_feature(objc_default_synthesize_properties) checks for availability +of this feature in version of clang being used.

+

Function Overloading in C