summaryrefslogtreecommitdiffstats
path: root/Source/cmFortranParser.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-03-24 23:03:48 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2017-03-29 16:48:48 (GMT)
commit48cfb295a2810e541bd286f352d77d840be345f7 (patch)
tree5c320cf48751e10e2b2f82caec13c025a72e68c1 /Source/cmFortranParser.h
parent90bb5f64a48265cee1ec6c1f57c5ac57b632fd68 (diff)
downloadCMake-48cfb295a2810e541bd286f352d77d840be345f7.zip
CMake-48cfb295a2810e541bd286f352d77d840be345f7.tar.gz
CMake-48cfb295a2810e541bd286f352d77d840be345f7.tar.bz2
cmFortranParser: remove unnecessary typedef
Diffstat (limited to 'Source/cmFortranParser.h')
-rw-r--r--Source/cmFortranParser.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmFortranParser.h b/Source/cmFortranParser.h
index e8273fb..024b00a 100644
--- a/Source/cmFortranParser.h
+++ b/Source/cmFortranParser.h
@@ -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;
};