From: Ted Kremenek Date: Thu, 27 Jan 2011 06:59:29 +0000 (+0000) Subject: Fix a few typos in HTML documentation. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a018c27fa59cb9fbd04629703c882ed560be8c99;p=clang Fix a few typos in HTML documentation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124361 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/www/analyzer/annotations.html b/www/analyzer/annotations.html index b2182eb934..a08573a4c1 100644 --- a/www/analyzer/annotations.html +++ b/www/analyzer/annotations.html @@ -364,11 +364,11 @@ its availability, as it is not available in earlier versions of the analyzer:

#ifndef __has_feature -#define __has_Feature(x) 0 // Compatibility with non-clang compilers. +#define __has_feature(x) 0 // Compatibility with non-clang compilers. #endif #ifndef NS_CONSUMES_SELF -#if __has_feature((attribute_ns_consumes_self)) +#if __has_feature((attribute_ns_consumes_self)) #else #define NS_CONSUMES_SELF #endif @@ -376,7 +376,7 @@ its availability, as it is not available in earlier versions of the analyzer:

NS_CONSUMES_SELF NS_RETURNS_RETAINED; @end