From b8345b6e9c672d054aa4707aaf564b81de158fb1 Mon Sep 17 00:00:00 2001 From: Yi Kong Date: Fri, 24 May 2024 14:16:59 +0900 Subject: [PATCH] Fix build with ToT libc++ system/vold/fs/F2fs.h:33:28: error: no template named 'vector' in namespace 'std' 33 | const std::vector& user_devices); | Test: Build with ToT libc++ Change-Id: Iab5f3fc06ce780ae81e96df7fd091a28407c1422 --- fs/F2fs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/F2fs.h b/fs/F2fs.h index 7192b54..a0218f2 100644 --- a/fs/F2fs.h +++ b/fs/F2fs.h @@ -20,6 +20,7 @@ #include #include +#include namespace android { namespace vold {