Fixed handling of relationships to nested structs

This commit is contained in:
Bartek Kryza
2024-06-18 22:00:50 +02:00
parent fa94022c58
commit 9a43ebe739
4 changed files with 16 additions and 7 deletions

View File

@@ -43,5 +43,7 @@ TEST_CASE("t00076")
REQUIRE(!IsClass(src, "H"));
REQUIRE(!IsClass(src, "EE"));
REQUIRE(!IsClass(src, "GGG"));
REQUIRE(IsAssociation<Public>(src, "B", "B::BB"));
});
}

View File

@@ -668,7 +668,7 @@ int main(int argc, char *argv[])
std::vector<const char *> argvv = {
"clang-uml", "--config", "./test_config_data/simple.yml"};
argvv.push_back("-vvv");
argvv.push_back("-q");
clih.handle_options(argvv.size(), argvv.data());