Fixes for variable shadowing (9/28)
This commit is contained in:
parent
dffc1741d9
commit
36b541ac42
1 changed files with 2 additions and 2 deletions
|
|
@ -95,9 +95,9 @@ char * csv_reader::next_line(std::istream& sin)
|
|||
return linebuf;
|
||||
}
|
||||
|
||||
void csv_reader::read_index(std::istream& in)
|
||||
void csv_reader::read_index(std::istream& sin)
|
||||
{
|
||||
char * line = next_line(in);
|
||||
char * line = next_line(sin);
|
||||
if (! line)
|
||||
return;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue