Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Commit 561a9ac

Browse files
Forgot to delete previous definition of parse_csv_line
1 parent 26cb8fd commit 561a9ac

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/classesPerUC.cpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,7 @@
1111
#include "Utils.hpp"
1212

1313

14-
void parse_csv_line(std::string s, std::vector<std::string> &res) {
15-
std::stringstream line(s);
16-
std::string buf;
17-
while (getline(line, buf, ','))
18-
res.push_back(buf);
19-
}
14+
2015

2116
ClassPerUC::ClassPerUC(std::string line) {
2217
std::vector<std::string> linebuf;

0 commit comments

Comments
 (0)