mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Use LeakChecked throughout Beast
This commit is contained in:
@@ -26,6 +26,15 @@ File::File (const String& fullPathName)
|
||||
{
|
||||
}
|
||||
|
||||
File::File (const File& other)
|
||||
: fullPath (other.fullPath)
|
||||
{
|
||||
}
|
||||
|
||||
File::~File() noexcept
|
||||
{
|
||||
}
|
||||
|
||||
File File::createFileWithoutCheckingPath (const String& path) noexcept
|
||||
{
|
||||
File f;
|
||||
@@ -33,11 +42,6 @@ File File::createFileWithoutCheckingPath (const String& path) noexcept
|
||||
return f;
|
||||
}
|
||||
|
||||
File::File (const File& other)
|
||||
: fullPath (other.fullPath)
|
||||
{
|
||||
}
|
||||
|
||||
File& File::operator= (const String& newPath)
|
||||
{
|
||||
fullPath = parseAbsolutePath (newPath);
|
||||
|
||||
Reference in New Issue
Block a user