LibIPC: Remove outdated warning about changing IPC encodings

We are no longer constrained by this LibC encoding.
This commit is contained in:
Timothy Flynn 2025-03-08 08:22:48 -05:00 committed by Tim Flynn
commit b090952274
Notes: github-actions[bot] 2025-03-09 15:16:20 +00:00
2 changed files with 0 additions and 2 deletions

View file

@ -130,7 +130,6 @@ ErrorOr<void> encode(Encoder& encoder, Array<T, N> const& array)
template<Concepts::Vector T>
ErrorOr<void> encode(Encoder& encoder, T const& vector)
{
// NOTE: Do not change this encoding without also updating LibC/netdb.cpp.
TRY(encoder.encode_size(vector.size()));
for (auto const& value : vector)