Consistently use UINT32_MAX, not -1, for uint32_t values

This commit is contained in:
Rangi42
2024-12-10 19:47:23 -05:00
parent a8ec9228d4
commit b18cfe6bdb
3 changed files with 3 additions and 3 deletions

View File

@@ -162,7 +162,7 @@ bool yywrap() {
// If the node is referenced outside this context, we can't edit it, so duplicate it
if (context.fileInfo.use_count() > 1) {
context.fileInfo = std::make_shared<FileStackNode>(*context.fileInfo);
context.fileInfo->ID = -1; // The copy is not yet registered
context.fileInfo->ID = UINT32_MAX; // The copy is not yet registered
}
std::vector<uint32_t> &fileInfoIters = context.fileInfo->iters();