summaryrefslogtreecommitdiffstats
path: root/src/message.h
diff options
context:
space:
mode:
authorJames Wilcox <wilcoxjay@gmail.com>2013-08-11 17:30:38 (GMT)
committerarwedus <70707249+arwedus@users.noreply.github.com>2021-02-13 00:28:55 (GMT)
commitaf06f361f3d0ae240de63ce6bf5137dab247cc46 (patch)
tree2c2336010f975141b21b26465a43ff755098e2a4 /src/message.h
parenta136cfef5489af08ada5ed8c928a5876133b9f3e (diff)
downloadDoxygen-af06f361f3d0ae240de63ce6bf5137dab247cc46.zip
Doxygen-af06f361f3d0ae240de63ce6bf5137dab247cc46.tar.gz
Doxygen-af06f361f3d0ae240de63ce6bf5137dab247cc46.tar.bz2
add config option WARN_IF_INCOMPLETE_DOC
Add a new warning class, "INCOMPLETE_DOC", and warning option "WARN_IF_INCOMPLETE_DOC", to control whether you get a warning for only documenting some of your function parameters. All users who want to retain the current behavior set WARN_IF_INCOMPLETE_DOC to the value of WARN_IF_DOC_ERROR.
Diffstat (limited to 'src/message.h')
-rw-r--r--src/message.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/message.h b/src/message.h
index af49632..aa63ecb 100644
--- a/src/message.h
+++ b/src/message.h
@@ -29,6 +29,7 @@ extern void warn(const char *file,int line,const char *fmt, ...) PRINTFLIKE(3, 4
extern void va_warn(const char* file, int line, const char* fmt, va_list args);
extern void warn_simple(const char *file,int line,const char *text);
extern void warn_undoc(const char *file,int line,const char *fmt, ...) PRINTFLIKE(3, 4);
+extern void warn_incomplete_doc(const char *file,int line,const char *fmt, ...) PRINTFLIKE(3, 4);
extern void warn_doc_error(const char *file,int line,const char *fmt, ...) PRINTFLIKE(3, 4);
extern void warn_uncond(const char *fmt, ...) PRINTFLIKE(1, 2);
extern void err(const char *fmt, ...) PRINTFLIKE(1, 2);