diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-12-14 12:01:11 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-12-14 12:01:11 (GMT) |
commit | e82e063bf51b9789d79ee94d5dfe8760f551111e (patch) | |
tree | a5283dbaee690bda64d855b8544bc885c930b293 | |
parent | 03f0d843d32a9cc1762ca422a9a2d77643454e21 (diff) | |
parent | 0c8edb7bb0b2f9bf8574e1a864a775a212bac868 (diff) | |
download | Doxygen-e82e063bf51b9789d79ee94d5dfe8760f551111e.zip Doxygen-e82e063bf51b9789d79ee94d5dfe8760f551111e.tar.gz Doxygen-e82e063bf51b9789d79ee94d5dfe8760f551111e.tar.bz2 |
Merge pull request #69 from albert-github/feature/idl_err_msg
doxygen version 1.8.5 throws many "Internal Inconsistency" errors when parsing .idl files
-rw-r--r-- | src/namespacedef.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/namespacedef.cpp b/src/namespacedef.cpp index 81b9a51..c0915b3 100644 --- a/src/namespacedef.cpp +++ b/src/namespacedef.cpp @@ -891,7 +891,7 @@ void NamespaceSDict::writeDeclaration(OutputList &ol,const char *title, { if (nd->isConstantGroup()) { - err("Internal inconsistency: constant group but not IDL?"); + err("Internal inconsistency: constant group but not IDL?\n"); } found=TRUE; break; @@ -936,7 +936,7 @@ void NamespaceSDict::writeDeclaration(OutputList &ol,const char *title, } else { - err("Internal inconsistency: namespace in IDL not module or cg"); + err("Internal inconsistency: namespace in IDL not module or cg\n"); } } ol.insertMemberAlign(); |