diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-07-29 17:38:33 -0700 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-07-29 19:01:40 -0700 |
commit | f198b8af72eb27171efa057dca883298b9fe5b8c (patch) | |
tree | 2ef89e8d12b5c43b50cc1c7909ad2e1ac3e4d4c8 | |
parent | 22df70e9edaa8353e5edcc65c660d2d9f19ede5a (diff) | |
download | ffmpeg-f198b8af72eb27171efa057dca883298b9fe5b8c.tar.gz |
doxygen: Fix PREDEFINED syntax
-rw-r--r-- | doc/Doxyfile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/Doxyfile b/doc/Doxyfile index 0c1604e007..d67e432aca 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -1355,13 +1355,13 @@ INCLUDE_FILE_PATTERNS = # undefined via #undef or recursively expanded use the := operator # instead of the = operator. -PREDEFINED = "__attribute__(x)=" \ - "DECLARE_ALIGNED(a,t,n)=t n" \ - "offsetof(x,y)=0x42" \ - av_alloc_size \ +PREDEFINED = __attribute__(x)= \ + "DECLARE_ALIGNED(n,t,v)=t v" \ + offsetof(x,y)=0x42 \ + av_alloc_size(...)= \ AV_GCC_VERSION_AT_LEAST(x,y)=1 \ AV_GCC_VERSION_AT_MOST(x,y)=0 \ - __GNUC__=1 \ + __GNUC__ \ # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. |