Skip to content

Commit

Permalink
In testin
Browse files Browse the repository at this point in the history
  • Loading branch information
AKMaily committed Oct 4, 2024
1 parent 7f88f67 commit be7328a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analyze_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ std::vector<double> AnalyzeStateManager::loadData(const std::map<Omniscope::Id,
auto selectedDevice(captureData.find(selectedDeviceId));
if(selectedDevice != captureData.end()){
y_values.resize(selectedDevice->second.size());
for(size_t i; i < selectedDevice->second.size(); ++i){
for(size_t i = 0; i < selectedDevice->second.size(); ++i){
std::cout << "Data before: " << selectedDevice->second[i].second << std::endl;
y_values[i] = selectedDevice->second[i].second;
}
Expand Down

0 comments on commit be7328a

Please sign in to comment.