thibaultmarin / hpp2plantuml

Convert C++ header files to PlantUML
MIT License
223 stars 35 forks source link

Array member in struct will be parsed to its element type #25

Closed JY0284 closed 1 year ago

JY0284 commented 1 year ago

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.