Skip to content

Commit 8e1574d

Browse files
src/load_data_for_complexity.cpp: linting
1 parent a6e7a1c commit 8e1574d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/load_data_for_complexity.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,10 @@ get_input_format_type(const std::string &filename) -> input_format_type {
9292
std::string line;
9393
if (!std::getline(in, line))
9494
return input_format_type::unknown;
95-
std::string s;
95+
9696
std::uint32_t val1{}, val2{};
9797
{
98+
std::string s;
9899
std::istringstream iss(line);
99100
if (iss >> s >> val1 >> val2)
100101
return input_format_type::bed;

0 commit comments

Comments
 (0)