commit | 644a5b7d25e54a1a682ad25d873b95453c405c97 | [log] [tgz] |
---|---|---|
author | Ryan Prichard <rprichard@google.com> | Thu Jul 20 21:39:48 2023 -0700 |
committer | Ryan Prichard <rprichard@google.com> | Tue Jul 25 21:34:53 2023 -0700 |
tree | 666fc9516556137c8bc3c6a018b71f11b9a0507b | |
parent | 39a9427c02c1bb30434e532f0053d436aedf85b2 [diff] [blame] |
installd: add missing <functional> for std::function. Bug: b/175635923 Test: treehugger Change-Id: I2541263d27b5bced25667baaf814bff0e65e4604
diff --git a/cmds/installd/CrateManager.cpp b/cmds/installd/CrateManager.cpp index b17cba1..fd1df35 100644 --- a/cmds/installd/CrateManager.cpp +++ b/cmds/installd/CrateManager.cpp
@@ -29,9 +29,10 @@ #include <sys/xattr.h> #include <unistd.h> -#include <fstream> -#include <string> #include <utils.h> +#include <fstream> +#include <functional> +#include <string> #include "utils.h"