From ffc2a2f30668d864722b93645dff06ff53ece2fc Mon Sep 17 00:00:00 2001 From: Piotr Tworek Date: Thu, 3 Dec 2020 00:17:06 +0100 Subject: [PATCH] os: Disambiguate File_system in ram_file_system.h. According to clang there are two symbols which File_system can refer to: 1. namespace File_system from ram_fs/chunk.h. 2. Vfs::File_system class from vfs/file_system.h. Make it clear we refer to the File_system namespace in this case. Issue #3984 --- repos/os/src/lib/vfs/ram_file_system.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repos/os/src/lib/vfs/ram_file_system.h b/repos/os/src/lib/vfs/ram_file_system.h index 5f903885cb..0dad78afb8 100644 --- a/repos/os/src/lib/vfs/ram_file_system.h +++ b/repos/os/src/lib/vfs/ram_file_system.h @@ -27,8 +27,8 @@ namespace Vfs_ram { using namespace Genode; using namespace Vfs; using namespace Ram_fs; - using File_system::Chunk; - using File_system::Chunk_index; + using ::File_system::Chunk; + using ::File_system::Chunk_index; struct Io_handle; struct Watch_handle;