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 *
|
char *
|
||||||
TextFile::ReadLine()
|
TextFile::ReadLine()
|
||||||
|
@ -44,7 +44,7 @@ public:
|
|||||||
|
|
||||||
TextFile(const TextFile &other) = delete;
|
TextFile(const TextFile &other) = delete;
|
||||||
|
|
||||||
~TextFile();
|
~TextFile() noexcept;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reads a line from the input file, and strips trailing
|
* Reads a line from the input file, and strips trailing
|
||||||
|
Loading…
Reference in New Issue
Block a user