1
CodeCompletion redesign / Re: use PPToken for preprocessor in native CC
« Last post by Miguel Gimenez on Today at 05:58:45 pm »I have been looking at this commit (the exact location of the changes was not specified).
PPToken looks to me just a way to pack token information, so I assume the real benefit is using the deque afterwards.
I just suggest changing
to this
and removing this part
PPToken looks to me just a way to pack token information, so I assume the real benefit is using the deque afterwards.
I just suggest changing
Code
if (m_PPTokenStream.size() > 0)
Code
if (!m_PPTokenStream.empty())
Code
else
;// peekToken.Clear();