mirror of
https://github.com/wolfpld/tracy.git
synced 2026-08-06 05:19:16 +00:00
Move source file parsing logic to a separate file.
This commit is contained in:
@@ -75,10 +75,10 @@ static unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> G
|
||||
}
|
||||
}
|
||||
|
||||
void Tokenizer::Reset()
|
||||
Tokenizer::Tokenizer()
|
||||
: m_isInComment( false )
|
||||
, m_isInPreprocessor( false )
|
||||
{
|
||||
m_isInComment = false;
|
||||
m_isInPreprocessor = false;
|
||||
}
|
||||
|
||||
std::vector<Tokenizer::Token> Tokenizer::Tokenize( const char* begin, const char* end )
|
||||
|
||||
Reference in New Issue
Block a user