summaryrefslogtreecommitdiff
path: root/cli/source.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-03-19 12:44:04 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-03-19 12:44:04 +0200
commit1dea398d6f864c99b9e1c34e4a718239cfd3d8ac (patch)
tree0515378ce75266616760ff41d979357c56d2a087 /cli/source.cxx
parent29e274022a8c88dd1a48c1b591635bb044fe808f (diff)
Add support for exclude-base value in --class-doc option
Diffstat (limited to 'cli/source.cxx')
-rw-r--r--cli/source.cxx4
1 files changed, 2 insertions, 2 deletions
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_");