From 09d972e62555fa07fe6bc31cd81da272a2e152e3 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 6 Apr 2020 19:11:37 +0200 Subject: [PATCH] Fix v4l2proxy compilation without SSE2. --- v4l2proxy.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v4l2proxy.cpp b/v4l2proxy.cpp index 2bb40aa..3cb3bc0 100644 --- a/v4l2proxy.cpp +++ b/v4l2proxy.cpp @@ -18,7 +18,9 @@ #if __SSE2__ #include #endif +#include +using namespace std; using namespace bmusb; BMUSBCapture *usb; -- 2.39.2