From 883e44ad40198c8e242c2756c6059b5941cb041e Mon Sep 17 00:00:00 2001 From: Mira Grudzinska Date: Mon, 11 Oct 2021 00:13:11 +0200 Subject: [PATCH] svg2tvg: added missing array lib --- src/bin/svg2tvg/svg2tvg.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/svg2tvg/svg2tvg.cpp b/src/bin/svg2tvg/svg2tvg.cpp index 0c4d18aa..02f1eba7 100644 --- a/src/bin/svg2tvg/svg2tvg.cpp +++ b/src/bin/svg2tvg/svg2tvg.cpp @@ -23,6 +23,7 @@ #include #include #include +#include using namespace std; using namespace tvg; @@ -94,4 +95,4 @@ int main(int argc, char **argv) } return 0; -} \ No newline at end of file +}