mirror of
https://github.com/reactos/reactos.git
synced 2025-04-19 04:07:16 +00:00
ignore #undef statements for now
svn path=/trunk/; revision=6640
This commit is contained in:
parent
b1fc831113
commit
5822ae79d0
1 changed files with 4 additions and 0 deletions
|
@ -267,6 +267,10 @@ void process_preprocessor ( const char* filename, Header& h, const string& eleme
|
||||||
|
|
||||||
h.symbols.push_back ( s );
|
h.symbols.push_back ( s );
|
||||||
}
|
}
|
||||||
|
else if ( preproc == "undef" )
|
||||||
|
{
|
||||||
|
// safely ignoreable for now, I think
|
||||||
|
}
|
||||||
else if ( preproc == "if" || preproc == "ifdef" || preproc == "ifndef" )
|
else if ( preproc == "if" || preproc == "ifdef" || preproc == "ifndef" )
|
||||||
{
|
{
|
||||||
size_t len = element.size();
|
size_t len = element.size();
|
||||||
|
|
Loading…
Reference in a new issue