aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kirth <paulkirth@google.com>2024-03-07 16:28:48 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-03-07 16:28:48 +0000
commit59fb4589d15ebbf84346f09b88d222f5ce57a0d3 (patch)
tree777f27b477689ef14600281a6cf5703caa9ea039
parent5b466f8d01b2d1d91885e1be2e2c621cce4d358e (diff)
parent32d0c385b4159b7c06a8eb79a9593f31dfbbceee (diff)
downloadaemu-59fb4589d15ebbf84346f09b88d222f5ce57a0d3.tar.gz
Merge "Fix missing include after libc++ update" into main
-rw-r--r--base/include/aemu/base/Optional.h1
1 files changed, 1 insertions, 0 deletions
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 <utility>
#include <cstddef>
+#include <cstdlib>
// Optional<T> - a template class to store an optional value of type T.
//