diff options
author | albert-github <albert.tests@gmail.com> | 2013-12-14 11:35:46 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2013-12-14 11:35:46 (GMT) |
commit | 0c8edb7bb0b2f9bf8574e1a864a775a212bac868 (patch) | |
tree | a5283dbaee690bda64d855b8544bc885c930b293 /src | |
parent | 03f0d843d32a9cc1762ca422a9a2d77643454e21 (diff) | |
download | Doxygen-0c8edb7bb0b2f9bf8574e1a864a775a212bac868.zip Doxygen-0c8edb7bb0b2f9bf8574e1a864a775a212bac868.tar.gz Doxygen-0c8edb7bb0b2f9bf8574e1a864a775a212bac868.tar.bz2 |
doxygen version 1.8.5 throws many "Internal Inconsistency" errors when parsing .idl files
A number of error messages lacked the '\n' character
Diffstat (limited to 'src')
-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(); |