diff options
author | 2023-03-24 09:47:54 +0000 | |
---|---|---|
committer | 2023-03-24 11:32:03 +0000 | |
commit | f174bd5c54c433678a971831b107dda24fabf8ee (patch) | |
tree | ecd9a66cec67cca1bdd43042664a7ea37b323be3 | |
parent | e32b7bbdd06825a9dde0123c2414209e5066aafb (diff) |
[IWYU] Include <algorithm> headers
Test: Existing unit tests still pass.
BUG: crbug/1377413
Change-Id: I1a0e326034dff96448a385a42bd4d04b3f04c043
-rw-r--r-- | libdexfile/dex/descriptors_names.cc | 2 | ||||
-rw-r--r-- | libdexfile/external/dex_file_ext.cc | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/libdexfile/dex/descriptors_names.cc b/libdexfile/dex/descriptors_names.cc index f6ffc59d2f..dce5ecdcde 100644 --- a/libdexfile/dex/descriptors_names.cc +++ b/libdexfile/dex/descriptors_names.cc @@ -16,6 +16,8 @@ #include "descriptors_names.h" +#include <algorithm> + #include "android-base/stringprintf.h" #include "android-base/strings.h" diff --git a/libdexfile/external/dex_file_ext.cc b/libdexfile/external/dex_file_ext.cc index fc2bb855f0..e71233c1cf 100644 --- a/libdexfile/external/dex_file_ext.cc +++ b/libdexfile/external/dex_file_ext.cc @@ -22,6 +22,7 @@ #include <sys/types.h> #include <unistd.h> +#include <algorithm> #include <cerrno> #include <cstring> #include <deque> |