From cec2dbfb0e1032d6216db17aece44a8943daabde Mon Sep 17 00:00:00 2001 From: artemzelenov Date: Mon, 22 May 2023 15:34:12 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D1=83=20=D1=81=20=D0=BA?= =?UTF-8?q?=D0=BE=D0=BC=D0=BF=D0=B8=D0=BB=D1=8F=D1=86=D0=B8=D0=B5=D0=B9=20?= =?UTF-8?q?=D0=B8=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20libcurl?= =?UTF-8?q?=20=D0=B1=D0=B5=D0=B7=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/project/main.cpp b/project/main.cpp index 602c108..edd8c5d 100644 --- a/project/main.cpp +++ b/project/main.cpp @@ -1,3 +1,4 @@ +#include #include #include #include "histogram.h" @@ -31,6 +32,7 @@ input_data(istream& tin, bool prompt) } int main() { + curl_global_init(CURL_GLOBAL_ALL); Input in = input_data(cin,true); auto bins = make_histogram(in.numbers, in.bin_count); show_histogram_svg(bins);