brobeson / Tools

Scripts written to aid software development.
2 stars 1 forks source link

The doxygen command doesn't handle methods with "delete" in the name. #45

Open brobeson opened 8 years ago

brobeson commented 8 years ago

Consider the following class:

class Foo
{
public:
    bool deleteBar() noexcept;
};

Attempting to add a Doxygen comment to the function deleteBar() wraps the function in \cond and \endcond.