Код: Выделить всё
void plotResults(TChart *Chart, vector times, String seriesName) {
TLineSeries *series = new TLineSeries(Chart);
series->Title = seriesName;
for (int i = 0; i < times.size(); i++) {
series->Add(times[i], i * 1000);
}
Chart->AddSeries(series);
}
Код: Выделить всё
[bcc32c Error] GdiplusPath.h(146): reference to 'byte' is ambiguous
rpcndr.h(197): candidate found by name lookup is 'byte'
stddef.h(258): candidate found by name lookup is 'std::byte'
Подробнее здесь: https://stackoverflow.com/questions/786 ... -c-builder