fs/io/TextFile: add noexcept
This commit is contained in:
parent
6d86902a02
commit
392b783c9e
@ -40,7 +40,7 @@ TextFile::TextFile(Path path_fs)
|
||||
{
|
||||
}
|
||||
|
||||
TextFile::~TextFile() = default;
|
||||
TextFile::~TextFile() noexcept = default;
|
||||
|
||||
char *
|
||||
TextFile::ReadLine()
|
||||
|
@ -44,7 +44,7 @@ public:
|
||||
|
||||
TextFile(const TextFile &other) = delete;
|
||||
|
||||
~TextFile();
|
||||
~TextFile() noexcept;
|
||||
|
||||
/**
|
||||
* Reads a line from the input file, and strips trailing
|
||||
|
Loading…
Reference in New Issue
Block a user