commit | 8bf20738d8417416c5b18fbbab59abc2626e8d15 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <[email protected]> | Fri Feb 09 21:28:26 2024 +0000 |
committer | Gerrit Code Review <[email protected]> | Fri Feb 09 21:28:26 2024 +0000 |
tree | 2716ec42f9d04ad7344401409bf2fdb60f5d6f95 | |
parent | 5cdd1f6749f68d336197609a859420afdf0bdc42 [diff] | |
parent | ff7ffccb80377127a5277aac5e7e121f26670f86 [diff] |
Merge "Fix missing include after libc++ update" into main
diff --git a/guest/android-emu/aemu/base/Optional.h b/guest/android-emu/aemu/base/Optional.h index cb63273..b76f5a1 100644 --- a/guest/android-emu/aemu/base/Optional.h +++ b/guest/android-emu/aemu/base/Optional.h
@@ -24,6 +24,7 @@ #include <utility> #include <cstddef> +#include <cstdlib> // Optional<T> - a template class to store an optional value of type T. //