Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e175aaa9 authored by Jaesung Chung's avatar Jaesung Chung
Browse files

Use vector instead of deprecated ScopedVector

ScopedVector has been deprecated so vector should be used.

Bug: 70598154
Test: build
Change-Id: Ifff33bd03ffed3a0fd48bbf086b7fdad0b69b599
parent fadfd6e1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -48,8 +48,8 @@ private:
    struct SavedBootParameters {
        int brightness;
        int volume;
        ScopedVector<std::string> param_names;
        ScopedVector<std::string> param_values;
        std::vector<std::unique_ptr<std::string>> param_names;
        std::vector<std::unique_ptr<std::string>> param_values;

        SavedBootParameters();
        static void RegisterJSONConverter(