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

..

Ничего общего в коммитах. '19fbaf3a4d73b8b5fec46b22319d30478123c324' и 'be6059fb6cc98cf2177ca81753b614bb69722ebd' имеют совершенно разные истории.

2
LR3/.gitignore поставляемый

@ -2,5 +2,3 @@
/obj
/LR3.depend
/LR3.layout
/curl/
/unittest.layout

@ -13,12 +13,7 @@
<Option compiler="gcc" />
<Compiler>
<Add option="-g" />
<Add directory="C:/Users/daemo/OneDrive/Рабочий стол/lab03/LR3/curl/include" />
</Compiler>
<Linker>
<Add library="libcurl.dll.a" />
<Add directory="C:/Users/daemo/OneDrive/Рабочий стол/lab03/LR3/curl/lib" />
</Linker>
</Target>
<Target title="Release">
<Option output="bin/Release/LR3" prefix_auto="1" extension_auto="1" />

@ -3,8 +3,6 @@
#include "histogram.h"
#include "text.h"
#include "svg.h"
#include <curl/curl.h>
using namespace std;
@ -31,7 +29,6 @@ input_data(){
int main()
{
curl_global_init(CURL_GLOBAL_ALL);
auto in = input_data();
auto bins = make_histogram(in.numbers, in.bin_count);
show_histogram_svg(bins);

@ -2,7 +2,6 @@
#include <string>
using namespace std;
svg_begin(double width, double height) {
cout << "<?xml version='1.0' encoding='UTF-8'?>\n";
cout << "<svg ";
@ -12,7 +11,6 @@ svg_begin(double width, double height) {
cout << "xmlns='http://www.w3.org/2000/svg'>\n";
}
void svg_end() {
cout << "</svg>\n";
}
@ -21,7 +19,6 @@ void svg_text(double left, double baseline, string text) {
cout << "<text x='" << left << "' y='" << baseline << "'>" << text << "</text>";
}
void svg_rect(double x, double y, double width, double height, string stroke = "black", string fill = "black")
{
cout << "<rect x='" << x << "' y='" << y << "' width='" << width

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