Archive warnings clang-tidy fixes

This commit is contained in:
Dan Paulat 2025-04-27 13:40:04 -05:00
parent 8cdd8526eb
commit 81f09e07f0
14 changed files with 43 additions and 46 deletions

View file

@ -593,8 +593,8 @@ std::optional<Vtec> TryParseVtecString(std::istream& is)
if (RE2::PartialMatch(line, *rePVtecString))
{
vtec = Vtec();
bool vtecValid = vtec->pVtec_.Parse(line);
vtec = Vtec();
const bool vtecValid = vtec->pVtec_.Parse(line);
isBegin = is.tellg();