diff options
| author | 2024-08-26 22:08:29 +0000 | |
|---|---|---|
| committer | 2024-08-26 22:08:29 +0000 | |
| commit | 1120d7f67acc0524375b10ce3df7cc5606baf369 (patch) | |
| tree | ed89f5a74c63602b635582e9ae0ef241c992488c | |
| parent | 795c8b31dfc1dfd285cba7b50a58a452b1682122 (diff) | |
| parent | 0cba3b55e2f85cfa46cc929b099b5eed0382dba6 (diff) | |
Merge "installd: avoid vector<const T>" into main
| -rw-r--r-- | cmds/installd/tests/installd_dexopt_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/installd/tests/installd_dexopt_test.cpp b/cmds/installd/tests/installd_dexopt_test.cpp index ee91d80a3b..e89543e46f 100644 --- a/cmds/installd/tests/installd_dexopt_test.cpp +++ b/cmds/installd/tests/installd_dexopt_test.cpp @@ -1449,7 +1449,7 @@ TEST_F(ProfileTest, CopySystemProfileFailWrongProfileName) { class BootProfileTest : public ProfileTest { public: - std::vector<const std::string> extra_apps_; + std::vector<std::string> extra_apps_; std::vector<int64_t> extra_ce_data_inodes_; virtual void SetUp() { |