Get rid of unnecessary "typedef enum" in C++ code

No real changes, just remove this C-ism from C++ DoxygenParser class code.
This commit is contained in:
Vadim Zeitlin 2017-02-01 01:38:43 +01:00
commit 87ae580d75

View file

@ -24,7 +24,7 @@
class DoxygenParser {
private:
typedef enum {
enum DoxyCommandEnum {
NONE = -1,
SIMPLECOMMAND,
COMMANDWORD,
@ -44,7 +44,7 @@ private:
PARAGRAPH_END,
PLAINSTRING,
COMMAND
} DoxyCommandEnum;
};
/** This class contains parts of Doxygen comment as a token. */