From 1dea398d6f864c99b9e1c34e4a718239cfd3d8ac Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 19 Mar 2018 12:44:04 +0200 Subject: Add support for exclude-base value in --class-doc option --- cli/source.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/source.cxx') diff --git a/cli/source.cxx b/cli/source.cxx index 44bf93e..180cea8 100644 --- a/cli/source.cxx +++ b/cli/source.cxx @@ -519,7 +519,7 @@ namespace { class_doc_type cd (class_doc (c)); - if (cd == cd_exclude) + if (cd == cd_exclude || cd == cd_exclude_base) return; const char* t ( @@ -1040,7 +1040,7 @@ namespace return; const char* t ( - (cd == cd_default + (cd == cd_default || cd == cd_exclude_base ? usage != ut_both || usage_ == ut_short : cd == cd_short) ? "" : "long_"); -- cgit v1.1