Skip to content

Commit 19fc493

Browse files
committed
Ran clang-format [skip ci]
1 parent 9e05a44 commit 19fc493

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

examples/disco/example.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,7 @@ Dataset<int, std::string> load_movielens(const std::string& path) {
3838
while (std::getline(movies_file, line)) {
3939
std::string::size_type n = line.find('|');
4040
std::string::size_type n2 = line.find('|', n + 1);
41-
movies.emplace(
42-
line.substr(0, n),
43-
convert_to_utf8(line.substr(n + 1, n2 - n - 1))
44-
);
41+
movies.emplace(line.substr(0, n), convert_to_utf8(line.substr(n + 1, n2 - n - 1)));
4542
}
4643

4744
// read ratings and create dataset

0 commit comments

Comments
 (0)