From 32d0c385b4159b7c06a8eb79a9593f31dfbbceee Mon Sep 17 00:00:00 2001 From: Paul Kirth Date: Fri, 9 Feb 2024 20:15:10 +0000 Subject: Fix missing include after libc++ update Upstream libc++ has changed a transitive header dependency. The upstream PR is here: https://github.com/llvm/llvm-project/pull/80418 and no longer transitively brought . More context can be found at: https://fxbug.dev/324466743 Change-Id: I8a6d162eb637409c2834c432ab7a6fa991f4a487 --- base/include/aemu/base/Optional.h | 1 + 1 file changed, 1 insertion(+) diff --git a/base/include/aemu/base/Optional.h b/base/include/aemu/base/Optional.h index 2a04603..19e4bbf 100644 --- a/base/include/aemu/base/Optional.h +++ b/base/include/aemu/base/Optional.h @@ -28,6 +28,7 @@ #include #include +#include // Optional - a template class to store an optional value of type T. // -- cgit v1.2.3