diff options
| author | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2017-10-16 07:15:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-16 07:15:29 +0200 |
| commit | 8e458eb615e60f066f9b094e21741cdc5d8588c4 (patch) | |
| tree | 44266e48c37f9f01155aa5f77f81d647737423d0 /README.md | |
| parent | c7ebe707bbfbe52c75646a111600986d6c584d03 (diff) | |
| parent | 4e65a500f7f6e65d9d3c62f04cc8ab60df47c597 (diff) | |
| download | doxdocgen-8e458eb615e60f066f9b094e21741cdc5d8588c4.tar.gz | |
Merge pull request #17 from christophschlosser/fix-func-ptr-param
Fix param generation for function pointers
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -43,9 +43,23 @@ Or void return values See [Below](#whats-to-come) +## Contributors + +[Christoph Schlosser](https://github.com/christophschlosser) + +[Rowan Goemans](https://github.com/rowanG077) + ## Known Issues -Completely new extension, so none. +### Function pointers + +See [#18](https://github.com/christophschlosser/doxdocgen/issues/18) + +Documentation for certain constructs (like the following) may not be generated correctly. + +```C +int (*idputs(int (*puts)(const char *)))(const char *) +``` ## What's to come |