Fix the __has_attribute example; we don't have an override attribute anymore.

llvm-svn: 124106
This commit is contained in:
Anders Carlsson 2011-01-24 03:54:51 +00:00
parent c2989b3718
commit 3bbfb7f64b
1 changed files with 3 additions and 3 deletions

View File

@ -151,10 +151,10 @@ can be used like this:</p>
#endif
...
#if __has_attribute(override)
#define OVERRIDE __attribute__((override))
#if __has_attribute(always_inline)
#define ALWAYS_INLINE __attribute__((always_inline))
#else
#define OVERRIDE
#define ALWAYS_INLINE
#endif
...
</pre>