diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-10-14 18:12:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-14 18:12:37 (GMT) |
commit | 560bd4f390b6f5ed3146ddd3def583bd074c35b9 (patch) | |
tree | 7440f7c3e7c70e2939b3a2a724fb97db95d6bfde | |
parent | 8934514297a37bcb83674b3d07f4f9e365b44d0f (diff) | |
parent | d269f239d7af8d3bd762abfd6a8557cd2d898eab (diff) | |
download | Doxygen-560bd4f390b6f5ed3146ddd3def583bd074c35b9.zip Doxygen-560bd4f390b6f5ed3146ddd3def583bd074c35b9.tar.gz Doxygen-560bd4f390b6f5ed3146ddd3def583bd074c35b9.tar.bz2 |
Merge pull request #7292 from albert-github/feature/bug_warn_alias
Incorrect warning for ALIASES
-rw-r--r-- | src/configimpl.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configimpl.l b/src/configimpl.l index e657745..0cc5c88 100644 --- a/src/configimpl.l +++ b/src/configimpl.l @@ -1495,7 +1495,7 @@ void Config::checkAndCorrect() alias=alias.stripWhiteSpace(); if (alias.find(re1)!=0 && alias.find(re2)!=0) { - err("Illegal alias format '%s'. Use \"name=value\" or \"name(n)=value\", where n is the number of arguments\n", + err("Illegal alias format '%s'. Use \"name=value\" or \"name{n}=value\", where n is the number of arguments\n", alias.data()); } s=aliasList.next(); |