Skip to content

Commit

Permalink
BUILDSYS-438 fix missing imports and defines if the first sequence or…
Browse files Browse the repository at this point in the history
… operation is deprecated or private
  • Loading branch information
JanFellner committed Sep 11, 2024
1 parent 96b7ffb commit 9905aa6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions compiler/core/asn_commentparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,9 @@ int EAsnStackElementModule::ProcessLine(const char* szModuleName, const char* sz
if (szLine.find(";") != std::string::npos)
m_bWaitForSemiColon = false;

m_strFilteredFileContent += m_strRawSourceFileIncrement;
m_strRawSourceFileIncrement.clear();

return 0;
}

Expand Down Expand Up @@ -638,6 +641,9 @@ int EAsnStackElementModule::ProcessLine(const char* szModuleName, const char* sz
}
else
{
m_strFilteredFileContent += m_strRawSourceFileIncrement;
m_strRawSourceFileIncrement.clear();

m_CollectComments.clear();
}

Expand Down

0 comments on commit 9905aa6

Please sign in to comment.