summaryrefslogtreecommitdiff
path: root/render-test/metadata.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'render-test/metadata.hpp')
-rw-r--r--render-test/metadata.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/render-test/metadata.hpp b/render-test/metadata.hpp
index 20cc440fd4..1d5a346f22 100644
--- a/render-test/metadata.hpp
+++ b/render-test/metadata.hpp
@@ -22,6 +22,10 @@ struct TestStatistics {
};
struct TestPaths {
+ TestPaths() = default;
+ TestPaths(mbgl::filesystem::path stylePath_, std::vector<mbgl::filesystem::path> expectations_)
+ : stylePath(std::move(stylePath_)), expectations(std::move(expectations_)) {}
+
mbgl::filesystem::path stylePath;
std::vector<mbgl::filesystem::path> expectations;