cmFortranParser: remove unnecessary typedef

This commit is contained in:
Daniel Pfeifer 2017-03-25 00:03:48 +01:00
parent 90bb5f64a4
commit 48cfb295a2

View File

@ -54,8 +54,7 @@ void cmFortranParser_RuleElse(cmFortranParser* parser);
void cmFortranParser_RuleEndif(cmFortranParser* parser);
/* Define the parser stack element type. */
typedef union cmFortran_yystype_u cmFortran_yystype;
union cmFortran_yystype_u
struct cmFortran_yystype
{
char* string;
};