From eaae22abb62e96530463c47b5c4d0448751b914c Mon Sep 17 00:00:00 2001 From: Arnaud Ferraris Date: Thu, 22 Sep 2022 14:31:24 +0200 Subject: adbd_auth: add missing headers to fix linux build On Linux, trying to build `adbd` fails due to missing headers in `adbd_auth.cpp` (tested on current Debian testing). Adding the `atomic` and `optional` headers fixes this issue. Signed-off-by: Arnaud Ferraris Test: build adbd for linux Change-Id: I9344ee571acbd1cecbcf3d5897cc5521c8e1d95f --- libs/adbd_auth/adbd_auth.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libs') diff --git a/libs/adbd_auth/adbd_auth.cpp b/libs/adbd_auth/adbd_auth.cpp index 15bd5c3913..ebc74fb3d8 100644 --- a/libs/adbd_auth/adbd_auth.cpp +++ b/libs/adbd_auth/adbd_auth.cpp @@ -23,8 +23,10 @@ #include #include +#include #include #include +#include #include #include #include -- cgit v1.2.3-59-g8ed1b