diff --git a/main.cpp b/main.cpp index df53d37..9686655 100644 --- a/main.cpp +++ b/main.cpp @@ -3,6 +3,7 @@ #include "histogram.h" #include "text.h" #include "svg.h" +#include using namespace std; @@ -42,6 +43,8 @@ input_data(istream& in, bool prompt) int main() { + curl_global_init(CURL_GLOBAL_ALL); + size_t max_count; auto in = input_data(cin, true); auto bins = make_histogram(in.numbers, in.bin_count);