diff options
-rw-r--r-- | cmds/bootanimation/iot/BootParameters.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmds/bootanimation/iot/BootParameters.h b/cmds/bootanimation/iot/BootParameters.h index ff3b018bd241..c10bd44bc2ca 100644 --- a/cmds/bootanimation/iot/BootParameters.h +++ b/cmds/bootanimation/iot/BootParameters.h @@ -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( |