From dd267c8a15a2c29af698480f10a86f2f39a43f27 Mon Sep 17 00:00:00 2001 From: "lab01(PokhilAA)" Date: Sun, 19 May 2024 11:20:27 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D1=83=D1=81=D1=82=D0=B0=D0=BD=D0=BE?= =?UTF-8?q?=D0=B2=D0=BA=D0=B0=20=D0=B4=D0=B8=D0=BD=D0=B0=D0=BC=D0=B8=D1=87?= =?UTF-8?q?=D0=B5=D1=81=D0=BA=D0=B8=D1=85=20=D0=B1=D0=B8=D0=B1=D0=BB=D0=B8?= =?UTF-8?q?=D0=BE=D1=82=D0=B5=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 129c45c..3b88f2e 100644 --- a/main.cpp +++ b/main.cpp @@ -2,7 +2,7 @@ #include #include "histogram.h" #include "svg.h" - +#include using namespace std; struct Input { @@ -37,6 +37,7 @@ input_data(istream& _cin){ int main() { + curl_global_init(CURL_GLOBAL_ALL); auto in = input_data(cin); auto bins = make_histogram(in.numbers, in.bin_count); show_histogram_svg(bins);