Skip to content

Commit 32d0c38

Browse files
committed
Fix missing include after libc++ update
Upstream libc++ has changed a transitive header dependency. The upstream PR is here: llvm/llvm-project#80418 and no longer transitively brought <cstdlib>. More context can be found at: https://fxbug.dev/324466743 Change-Id: I8a6d162eb637409c2834c432ab7a6fa991f4a487
1 parent 453652e commit 32d0c38

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

base/include/aemu/base/Optional.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include <utility>
2929

3030
#include <cstddef>
31+
#include <cstdlib>
3132

3233
// Optional<T> - a template class to store an optional value of type T.
3334
//

0 commit comments

Comments
 (0)