Fix typo in c07903aac7b9bc60d48f0381073285d79642cc3f

This commit is contained in:
Vitaly Buka 2023-10-26 23:44:21 -07:00
parent 8ff1422353
commit 8d30e80166

View File

@ -242,7 +242,7 @@ DEFAULT_PARAMETERS = [
AddFlag("-fsanitize=leaks") if sanitizer == "Leaks" else None,
AddFeature("sanitizer-new-delete") if sanitizer in ["Address", "HWAddress", "Memory", "MemoryWithOrigins", "Thread"] else None,
AddFeature("lsan") if sanitizer in ["Address", "HWAddress", "Leaks"] else
AddFeature("lsan") if sanitizer in ["Address", "HWAddress", "Leaks"] else None,
]
)
),