Сравнить коммиты

..

Ничего общего в коммитах. '5d4f2174233ec60cbabba1b7ce0357e363b349ce' и '07473c60bf769791cc8d00e381d9792dd169c49f' имеют совершенно разные истории.

@ -2,7 +2,6 @@
#include "histogram.h" #include "histogram.h"
#include "svg.h" #include "svg.h"
#include <vector> #include <vector>
#include <curl/curl.h>
using namespace std; using namespace std;
@ -40,17 +39,7 @@ Input input_data(istream& sin, bool prompt)
} }
} }
int main(int argc, char* argv[]) { int main() {
if (argc > 1) {
CURL* curl = curl_easy_init();
auto res = curl_easy_perform(curl);
if (res != 0) {
cout << curl_easy_strerror(res);
exit(1);
}
curl_easy_cleanup(curl);
return 0;
}
Input in = input_data(cin, false); Input in = input_data(cin, false);
auto bins = make_histogram(in.numbers, in.bin_count); auto bins = make_histogram(in.numbers, in.bin_count);
show_histogram_svg(bins); show_histogram_svg(bins);

Загрузка…
Отмена
Сохранить