diff options
Diffstat (limited to 'src/video.hpp')
-rw-r--r-- | src/video.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video.hpp b/src/video.hpp index 577606a..fd57d0b 100644 --- a/src/video.hpp +++ b/src/video.hpp @@ -53,9 +53,9 @@ namespace Video { void to_json(nlohmann::json& j, const std::vector<thumbnail>& v); void to_json(nlohmann::json& j, const video& v); void from_json(const nlohmann::json& j, format& f); - void from_json(const nlohmann::json& j, const std::vector<format>& v); + void from_json(const nlohmann::json& j, std::vector<format>& v); void from_json(const nlohmann::json& j, thumbnail& t); - void from_json(const nlohmann::json& j, const std::vector<thumbnail>& v); + void from_json(const nlohmann::json& j, std::vector<thumbnail>& v); void from_json(const nlohmann::json& j, video& v); }; #endif \ No newline at end of file |