hpp2plantuml
hpp2plantuml copied to clipboard
Array member in struct will be parsed to its element type
The struct container_of_array
is as following:
struct conatiner_of_array {
int arr_of_nums[0];
int num;
};
And the parsed puml file content will be like:
class conatiner_of_array {
+arr_of_nums : int
+num : int
}
The array type is ignored in puml result, which is incorrect.