don't assign unused name to exception
This commit is contained in:
parent
97dcf4eef9
commit
2288704bb5
@ -161,7 +161,7 @@ class FileReader
|
|||||||
{
|
{
|
||||||
std::getline(input_stream, thisline);
|
std::getline(input_stream, thisline);
|
||||||
}
|
}
|
||||||
catch (const std::ios_base::failure &e)
|
catch (const std::ios_base::failure & /*e*/)
|
||||||
{
|
{
|
||||||
// EOF is OK here, everything else, re-throw
|
// EOF is OK here, everything else, re-throw
|
||||||
if (!input_stream.eof())
|
if (!input_stream.eof())
|
||||||
|
Loading…
Reference in New Issue
Block a user