diff --git a/inferno/src/inferno/io/file.h b/inferno/src/inferno/io/file.h index 8de201f..e6fd617 100644 --- a/inferno/src/inferno/io/file.h +++ b/inferno/src/inferno/io/file.h @@ -32,11 +32,9 @@ namespace Inferno { file >> *t; } catch (...) { - file.close(); return false; } - file.close(); return true; } @@ -55,11 +53,9 @@ namespace Inferno { file << std::setfill ('\t') << std::setw(1) << *t << std::endl; } catch (...) { - file.close(); return false; } - file.close(); return true; } };