tests: Add a missing iostream include

generated_serializer_test.cpp uses iostream without including it,
relying on imports from another included header.  Let's include iostream
there.

Signed-off-by: Milan Zamazal <mzamazal@redhat.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Milan Zamazal 2024-09-02 17:41:54 +02:00 committed by Laurent Pinchart
parent 7a36d05795
commit 6a2b6628ce

View file

@ -6,6 +6,7 @@
*/ */
#include <algorithm> #include <algorithm>
#include <iostream>
#include <tuple> #include <tuple>
#include <vector> #include <vector>