build: загрузка файла doctest.h

Этот коммит содержится в:
2023-04-23 21:39:13 +03:00
родитель 20bb417d84
Коммит d5c6b1a53b
4 изменённых файлов: 7126 добавлений и 3 удалений

7106
doctest.h Обычный файл

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@@ -2,8 +2,9 @@
#include <vector>
#include <cmath>
#include "histogram.h"
#include "histogram_internal.h"
using namespace std;
static find_minmax(const vector<double>& numbers, double& min, double& max) {
void find_minmax(const vector<double>& numbers, double& min, double& max) {
min = numbers[0];
for (auto i = 0; i < numbers.size(); i++) {
if (numbers[i] < min) {

Просмотреть файл

@@ -32,7 +32,18 @@
<Add option="-Wall" />
<Add option="-fexceptions" />
</Compiler>
<Unit filename="histogram.cpp" />
<Unit filename="histogram.h">
<Option target="&lt;{~None~}&gt;" />
</Unit>
<Unit filename="histogram_internal.h">
<Option target="&lt;{~None~}&gt;" />
</Unit>
<Unit filename="main.cpp" />
<Unit filename="text.cpp" />
<Unit filename="text.h">
<Option target="&lt;{~None~}&gt;" />
</Unit>
<Extensions>
<lib_finder disable_auto="1" />
</Extensions>

Просмотреть файл

@@ -1,18 +1,20 @@
# depslib dependency file v1.0
1682272183 source:c:\users\hp\desktop\lab-03\project3\main.cpp
1682273367 source:c:\users\hp\desktop\lab-03\project3\main.cpp
<iostream>
<vector>
<cmath>
"histogram.h"
"text.h"
1682271918 c:\users\hp\desktop\lab-03\project3\histogram.h
<vector>
1682272774 source:c:\users\hp\desktop\lab-03\project3\histogram.cpp
1682273878 source:c:\users\hp\desktop\lab-03\project3\histogram.cpp
<iostream>
<vector>
<cmath>
"histogram.h"
"histogram_internal.h"
1682273206 source:c:\users\hp\desktop\lab-03\project3\text.cpp
<iostream>
@@ -23,3 +25,6 @@
1682273446 c:\users\hp\desktop\lab-03\project3\text.h
<vector>
1682273933 c:\users\hp\desktop\lab-03\project3\histogram_internal.h
<vector>