Fix defines proxy not being able to process parameters with underscores

This commit is contained in:
Jan
2021-12-01 23:19:20 +01:00
parent 17e7926442
commit f5ed7880b0
2 changed files with 18 additions and 1 deletions

View File

@ -70,7 +70,7 @@ void DefinesStreamProxy::Define::IdentifyParameters(const std::vector<std::strin
for (auto i = 0u; i < m_value.size(); i++)
{
const auto c = m_value[i];
if (!isalnum(c))
if (!isalnum(c) && c != '_')
{
if (inWord)
{