MrDocs drops the `final` keyword, when applied to a class. Example: ```c++ struct Foo final {}; ``` Generated: ``` struct Foo; ``` `final` appears to be preserved when applied to virtual functions.