diff options
| author | 2023-09-06 17:38:04 -0700 | |
|---|---|---|
| committer | 2023-09-06 17:40:37 -0700 | |
| commit | 872b41155e21cf30e854d2628540f87647e3da32 (patch) | |
| tree | 018f47034b4c596044e3df9f77d2615761c69500 | |
| parent | b303b74e0fa22c1167cfc668e8eb50c99688400c (diff) | |
Add missing <iterator> include for std::inserter
Bug: b/175635923
Test: treehugger
Change-Id: I241c8b2b48bb4c616fbc5b4ae1285e274182144b
Merged-In: I241c8b2b48bb4c616fbc5b4ae1285e274182144b
| -rw-r--r-- | cmds/idmap2/libidmap2/CommandLineOptions.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmds/idmap2/libidmap2/CommandLineOptions.cpp b/cmds/idmap2/libidmap2/CommandLineOptions.cpp index 8129d99650f7..b1edc1891541 100644 --- a/cmds/idmap2/libidmap2/CommandLineOptions.cpp +++ b/cmds/idmap2/libidmap2/CommandLineOptions.cpp @@ -20,6 +20,7 @@ #include <cassert> #include <iomanip> #include <iostream> +#include <iterator> #include <memory> #include <set> #include <sstream> |