diff --git a/Makefile b/Makefile index fa43cc4f..1eebfe73 100644 --- a/Makefile +++ b/Makefile @@ -61,6 +61,7 @@ clanguml_diagrams: debug mkdir -p docs/diagrams debug/clang-uml plantuml -tsvg docs/diagrams/*.puml + python3 util/format_svg.py docs/diagrams/*.svg .PHONY: submodules submodules: diff --git a/src/cx/util.cc b/src/cx/util.cc index f43859a0..77520069 100644 --- a/src/cx/util.cc +++ b/src/cx/util.cc @@ -236,7 +236,7 @@ std::string ns(const cppast::cpp_type &t, const cppast::cpp_entity_index &idx) static_cast(t) .primary_template(); if (!primary_template.is_overloaded()) { - LOG_WARN( + LOG_DBG( "Cannot establish namespace for ", cppast::to_string(t)); return ""; } diff --git a/uml/class_model_class_diagram.yml b/uml/class_model_class_diagram.yml index 35e896a1..6e45a9cf 100644 --- a/uml/class_model_class_diagram.yml +++ b/uml/class_model_class_diagram.yml @@ -11,6 +11,9 @@ include: namespaces: - clanguml::common::model - clanguml::class_diagram::model +exclude: + relationships: + - dependency using_namespace: - clanguml plantuml: diff --git a/uml/common_model_class_diagram.yml b/uml/common_model_class_diagram.yml index 267f3f77..483ad638 100644 --- a/uml/common_model_class_diagram.yml +++ b/uml/common_model_class_diagram.yml @@ -6,6 +6,9 @@ glob: include: namespaces: - clanguml::common::model +exclude: + relationships: + - dependency using_namespace: - clanguml::common::model plantuml: diff --git a/uml/diagram_model_class_diagram.yml b/uml/diagram_model_class_diagram.yml index e19b60d7..d98deac6 100644 --- a/uml/diagram_model_class_diagram.yml +++ b/uml/diagram_model_class_diagram.yml @@ -16,6 +16,9 @@ include: - clanguml::class_diagram::model - clanguml::sequence_diagram::model - clanguml::package_diagram::model +exclude: + relationships: + - dependency using_namespace: - clanguml plantuml: diff --git a/uml/package_model_class_diagram.yml b/uml/package_model_class_diagram.yml index d5648a54..7086e6cc 100644 --- a/uml/package_model_class_diagram.yml +++ b/uml/package_model_class_diagram.yml @@ -12,6 +12,9 @@ include: - clanguml::package_diagram::model using_namespace: - clanguml::package_diagram::model +exclude: + relationships: + - dependency plantuml: before: - 'title clang-uml package diagram model' \ No newline at end of file diff --git a/uml/sequence_model_class_diagram.yml b/uml/sequence_model_class_diagram.yml index 03de4ba9..30902016 100644 --- a/uml/sequence_model_class_diagram.yml +++ b/uml/sequence_model_class_diagram.yml @@ -10,6 +10,9 @@ include: namespaces: - clanguml::common::model - clanguml::sequence_diagram::model +exclude: + relationships: + - dependency using_namespace: - clanguml::sequence_diagram::model plantuml: