diff options
author | albert-github <albert.tests@gmail.com> | 2015-03-04 17:01:28 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2015-03-04 17:01:28 (GMT) |
commit | a7eef85a89d8772b7ab97a4ba378cc7e78c988cc (patch) | |
tree | d9183f0a4dee6e32f2926ea5ef4484b4f38f3985 /src/message.h | |
parent | 5e5615a9d2da8b923565c1bcadc9db48efbc75d0 (diff) | |
download | Doxygen-a7eef85a89d8772b7ab97a4ba378cc7e78c988cc.zip Doxygen-a7eef85a89d8772b7ab97a4ba378cc7e78c988cc.tar.gz Doxygen-a7eef85a89d8772b7ab97a4ba378cc7e78c988cc.tar.bz2 |
Better error message in case of IDL inconsistency
In case of an IDL internal doxygen inconsistency ("error: Internal inconsistency: namespace in IDL not module, library or
constant group ", see forum report: http://doxygen.10944.n7.nabble.com/Internal-inconsistency-Which-file-td7057.html) it is hard to find out which file causes the problem.
In this case the comment block with @namespace was the "problem").
This patch solves this by adding the file and line number of the source file causing the problem.
Diffstat (limited to 'src/message.h')
-rw-r--r-- | src/message.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/message.h b/src/message.h index 481e8bf..70811fb 100644 --- a/src/message.h +++ b/src/message.h @@ -29,6 +29,7 @@ extern void warn_undoc(const char *file,int line,const char *fmt, ...); extern void warn_doc_error(const char *file,int line,const char *fmt, ...); extern void warn_uncond(const char *fmt, ...); extern void err(const char *fmt, ...); +extern void err_full(const char *file,int line,const char *fmt, ...); void initWarningFormat(); extern void printlex(int dbg, bool enter, const char *lexName, const char *fileName); |