Fix unused parameter build error in SerializeIntoWriterWrapper()
build only
PiperOrigin-RevId: 506123313
diff --git a/quiche/common/wire_serialization.h b/quiche/common/wire_serialization.h
index 4792ffe..89a54f2 100644
--- a/quiche/common/wire_serialization.h
+++ b/quiche/common/wire_serialization.h
@@ -303,6 +303,8 @@
template <typename T>
auto SerializeIntoWriterWrapper(QuicheDataWriter& writer, int argno, T data) {
#if defined(NDEBUG)
+ (void)argno;
+ (void)data;
return data.SerializeIntoWriter(writer);
#else
// When running in the debug build, we check that the length reported by