From b33fd9d8cb3d50732537a86a0be3ba732c4ff39b Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Wed, 8 Nov 2023 07:59:38 +0200 Subject: [PATCH] Update src/core/file_sys/fs.h Co-authored-by: GPUCode <47210458+GPUCode@users.noreply.github.com> --- src/core/file_sys/fs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/file_sys/fs.h b/src/core/file_sys/fs.h index 126b16f9..18f2d00d 100644 --- a/src/core/file_sys/fs.h +++ b/src/core/file_sys/fs.h @@ -14,7 +14,7 @@ class MntPoints { std::string guest_path; // e.g /app0/ }; - MntPoints() {} + MntPoints() = default; virtual ~MntPoints() = default; void mount(const std::string& host_folder, const std::string& guest_folder); void unmount(const std::string& path);