diff options
author | marha <marha@users.sourceforge.net> | 2011-03-04 11:26:33 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-03-04 11:26:33 +0000 |
commit | dbe1b719f8037dda23279b8bc7d8200578415e15 (patch) | |
tree | 258cd8fc316da25de3df00dc36e00a1f54f0e125 /tools/mhmake/src/flexlexer.h | |
parent | d2bdfe9f8d895ac64619f7bc2f7443ce886146e9 (diff) | |
download | vcxsrv-dbe1b719f8037dda23279b8bc7d8200578415e15.tar.gz vcxsrv-dbe1b719f8037dda23279b8bc7d8200578415e15.tar.bz2 vcxsrv-dbe1b719f8037dda23279b8bc7d8200578415e15.zip |
Implement eval sort warning functions (see gnu make manual for description)
Solved errors in if and foreach implementations
Removed message and reparse function (use info and eval instead)
$n can be used to add new line
define can be used to specify multi-line macros
Solved error in argument expansion in call function
Diffstat (limited to 'tools/mhmake/src/flexlexer.h')
-rw-r--r-- | tools/mhmake/src/flexlexer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/mhmake/src/flexlexer.h b/tools/mhmake/src/flexlexer.h index 08acef335..33132dc93 100644 --- a/tools/mhmake/src/flexlexer.h +++ b/tools/mhmake/src/flexlexer.h @@ -151,13 +151,13 @@ public: string m_InputFileName; string m_curtoken; mystack m_IncludeStack; - mhmakefileparser *m_pParser; - mhmakefileparser *GetParser() + mhmakefileparser *m_pMakefileParser; + mhmakefileparser *GetParser(void) { - return m_pParser; + return m_pMakefileParser; } public: - string &GetInputFilename() + string &GetInputFilename(void) { return m_InputFileName; } |