Skip to content
Snippets Groups Projects
Commit 28b736af authored by Martin Beseda's avatar Martin Beseda
Browse files

FIX: Fixed memory leaks

parent 2b17de86
No related branches found
No related tags found
No related merge requests found
......@@ -75,8 +75,8 @@ namespace lib4neuro {
}
}
DataSet CSVReader::get_data_set(std::vector<unsigned int>* input_col_indices,
std::vector<unsigned int>* output_col_indices) {
std::shared_ptr<DataSet> CSVReader::get_data_set(std::vector<unsigned int>* input_col_indices,
std::vector<unsigned int>* output_col_indices) {
std::vector<std::pair<std::vector<double>, std::vector<double>>> data_set_contents;
......@@ -102,7 +102,7 @@ namespace lib4neuro {
boost::algorithm::erase_all(s, "\uFEFF"); // UTF-16
/* Check, if the string is a number */
double tmp = boost::lexical_cast<double>(s);
auto tmp = boost::lexical_cast<double>(s);
/* Add loaded number to the vector of inputs */
input.push_back(tmp);
......@@ -124,6 +124,6 @@ namespace lib4neuro {
data_set_contents.emplace_back(std::make_pair(input, output));
}
return DataSet(&data_set_contents);
return std::make_shared<DataSet>(DataSet(&data_set_contents));
}
}
\ No newline at end of file
......@@ -72,7 +72,7 @@ namespace lib4neuro {
* @param output_col_indices
* @return
*/
LIB4NEURO_API DataSet get_data_set(std::vector<unsigned int>* input_col_indices,
LIB4NEURO_API std::shared_ptr<DataSet> get_data_set(std::vector<unsigned int>* input_col_indices,
std::vector<unsigned int>* output_col_indices);
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment