mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-29 19:24:25 +03:00
Add more C style casts fixes and suppressions
This commit is contained in:
@@ -212,7 +212,7 @@ TEST_P(LbrTest, MatchMax) {
|
||||
const string corpus = matchingCorpus(params.max);
|
||||
|
||||
initQueue();
|
||||
q.buffer = (const u8 *)corpus.c_str();
|
||||
q.buffer = reinterpret_cast<const u8 *>(corpus.c_str());
|
||||
q.length = corpus.length();
|
||||
u64a end = corpus.length();
|
||||
|
||||
|
Reference in New Issue
Block a user