1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:28:12 +00:00

LibCpp: Replace defined preprocessor values when parsing

This commit is contained in:
Itamar 2021-03-12 17:04:08 +02:00 committed by Andreas Kling
parent f21af0922a
commit 3658c4c567
8 changed files with 134 additions and 44 deletions

View file

@ -182,4 +182,10 @@ void Preprocessor::handle_preprocessor_line(const StringView& line)
VERIFY_NOT_REACHED();
}
const String& Preprocessor::processed_text()
{
VERIFY(!m_processed_text.is_null());
return m_processed_text;
}
};