thibaultmarin / hpp2plantuml

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

[Bug] The C++ class marked as delete shall not be presented in the class diagram #8

Closed hysci closed 3 years ago

hysci commented 3 years ago

Example: class Foo { public: Foo& operator=(const Foo&) & = delete; Foo& operator=(Foo&&) & = delete; }

These classes are deleted, but they are still listed in the PlantUML class diagram.

thibaultmarin commented 3 years ago

Thanks for the report. It looks like this is going to have to wait until #7 is solved.

thibaultmarin commented 3 years ago

v0.7 should now handle the delete keyword.