hpp2plantuml icon indicating copy to clipboard operation
hpp2plantuml copied to clipboard

Array member in struct will be parsed to its element type

Open JY0284 opened this issue 2 years ago • 0 comments

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.

JY0284 avatar Sep 16 '22 07:09 JY0284