From 81b54344919b25f76614c56a5433c558395290b4 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Wed, 8 Nov 2023 07:58:34 +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 414d8281..126b16f9 100644 --- a/src/core/file_sys/fs.h +++ b/src/core/file_sys/fs.h @@ -15,7 +15,7 @@ class MntPoints { }; MntPoints() {} - virtual ~MntPoints() {} + virtual ~MntPoints() = default; void mount(const std::string& host_folder, const std::string& guest_folder); void unmount(const std::string& path); void unmountAll();