commit | c0305b145f092df1f83fb31c752b936716dfe682 | [log] [tgz] |
---|---|---|
author | Yi Kong <yikong@google.com> | Fri May 24 01:04:47 2024 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri May 24 01:04:47 2024 +0000 |
tree | 37025affa234ba867e3ad630e8eda67a2b3c592f | |
parent | d301af07bfb66f57d699c1821004b849707bba19 [diff] | |
parent | 0e8f64bb507376ea98024f634377125657289af5 [diff] |
Merge "Fix build with ToT libc++" into main
diff --git a/fs_mgr/libsnapshot/include/libsnapshot/cow_compress.h b/fs_mgr/libsnapshot/include/libsnapshot/cow_compress.h index 21dc666..635a38c 100644 --- a/fs_mgr/libsnapshot/include/libsnapshot/cow_compress.h +++ b/fs_mgr/libsnapshot/include/libsnapshot/cow_compress.h
@@ -17,6 +17,8 @@ #pragma once #include <memory> +#include <vector> + #include "libsnapshot/cow_format.h" namespace android { @@ -50,4 +52,4 @@ const uint32_t block_size_; }; } // namespace snapshot -} // namespace android \ No newline at end of file +} // namespace android
diff --git a/fs_mgr/libsnapshot/include/libsnapshot/cow_reader.h b/fs_mgr/libsnapshot/include/libsnapshot/cow_reader.h index 3f49c69..3389f58 100644 --- a/fs_mgr/libsnapshot/include/libsnapshot/cow_reader.h +++ b/fs_mgr/libsnapshot/include/libsnapshot/cow_reader.h
@@ -19,6 +19,7 @@ #include <memory> #include <optional> #include <unordered_map> +#include <vector> #include <android-base/unique_fd.h> #include <libsnapshot/cow_format.h>