From 0aed68d40e4adade2f51b64ae4411330bc793c6f Mon Sep 17 00:00:00 2001 From: ArtyushinaVV Date: Fri, 2 Jun 2023 17:12:26 +0300 Subject: [PATCH] =?UTF-8?q?build:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B1=D0=B8=D0=B1=D0=BB=D0=B8=D0=BE?= =?UTF-8?q?=D1=82=D0=B5=D0=BA=D0=B8=20curl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.cpp b/main.cpp index bc2fb4e..9fb717b 100644 --- a/main.cpp +++ b/main.cpp @@ -5,6 +5,9 @@ #include "text.h" #include "svg.h" +#include + + using namespace std; @@ -41,6 +44,8 @@ input_data(istream& in, bool prompt) int main() { + curl_global_init(CURL_GLOBAL_ALL); + bool prompt = true; auto in = input_data(cin, prompt); auto bins = make_histogram(in.numbers, in.bin_count);