jsoncons: fixed -W option to fix build (#486840)

This commit is contained in:
Nikolay Korotkiy
2026-02-09 15:02:02 +00:00
committed by GitHub
+1 -1
View File
@@ -18,7 +18,7 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [ cmake ];
env.NIX_CFLAGS_COMPILE = "-std=c++20 -Wno-error";
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=tautological-overlap-compare";
meta = {
description = "C++, header-only library for constructing JSON and JSON-like data formats";