diff --git a/project/main.cpp b/project/main.cpp index ffa867d..e8b81d7 100644 --- a/project/main.cpp +++ b/project/main.cpp @@ -4,6 +4,8 @@ #include "histogram.h" #include "text.h" #include "svg.h" +#include + using namespace std; struct Input @@ -35,6 +37,7 @@ input_data(istream& in, bool prompt) int main() { + curl_global_init(CURL_GLOBAL_ALL); auto in = input_data(cin, true); auto bins = make_histogram(in.numbers, in.bin_count); show_histogram_svg(bins);