diff options
| author | Boris Kolpackov <boris@codesynthesis.com> | 2018-03-19 12:44:04 +0200 |
|---|---|---|
| committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-03-19 12:44:04 +0200 |
| commit | 1dea398d6f864c99b9e1c34e4a718239cfd3d8ac (patch) | |
| tree | 0515378ce75266616760ff41d979357c56d2a087 /cli/source.cxx | |
| parent | 29e274022a8c88dd1a48c1b591635bb044fe808f (diff) | |
| download | cli-1dea398d6f864c99b9e1c34e4a718239cfd3d8ac.tar.gz cli-1dea398d6f864c99b9e1c34e4a718239cfd3d8ac.tar.xz cli-1dea398d6f864c99b9e1c34e4a718239cfd3d8ac.zip | |
Add support for exclude-base value in --class-doc option
Diffstat (limited to 'cli/source.cxx')
| -rw-r--r-- | cli/source.cxx | 4 |
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_"); |
