diff options
author | 2024-04-22 14:27:36 +0200 | |
---|---|---|
committer | 2024-04-22 14:27:36 +0200 | |
commit | 38f51279d10292af18c5f2675ea4d3a1b10e9723 (patch) | |
tree | f5f260472c02598d6b6eff9a1a07614b080114a4 /libs/binder/Parcel.cpp | |
parent | 44b6216a2d41c0b40bf39e60cf9fcae8b7e94393 (diff) |
Add missing header for std::binary_search
Change-Id: I7b01c89633742413539fdbf5375cc9fb72839f89
Diffstat (limited to 'libs/binder/Parcel.cpp')
-rw-r--r-- | libs/binder/Parcel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index 2dd310e9ca..84ef489a6c 100644 --- a/libs/binder/Parcel.cpp +++ b/libs/binder/Parcel.cpp @@ -30,6 +30,7 @@ #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> +#include <algorithm> #include <binder/Binder.h> #include <binder/BpBinder.h> |