From 7e9cb673ccfc77c5871292aa5491fc2c2dc2a663 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 23 Nov 2015 12:22:19 +0200 Subject: Add --include-base-last option --- cli/html.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'cli/html.cxx') diff --git a/cli/html.cxx b/cli/html.cxx index 41d4c59..0394a3a 100644 --- a/cli/html.cxx +++ b/cli/html.cxx @@ -231,7 +231,7 @@ namespace virtual void traverse (type& c) { - if (!options.exclude_base ()) + if (!options.exclude_base () && !options.include_base_last ()) inherits (c, inherits_base_); if (!c.names_empty ()) @@ -241,6 +241,9 @@ namespace os << " " << endl << endl; } + + if (!options.exclude_base () && options.include_base_last ()) + inherits (c, inherits_base_); } private: -- cgit v1.1