From 8dc54d78169ef214a3acfdbee1dac6dfa628bbf2 Mon Sep 17 00:00:00 2001 From: ahm3dgg Date: Sun, 11 Jan 2026 00:22:35 +0200 Subject: [PATCH] Clang Tidy Fix --- src/common/utils/string.hpp | 2 -- src/windows-emulator/syscalls/section.cpp | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/utils/string.hpp b/src/common/utils/string.hpp index 910b9233..12169357 100644 --- a/src/common/utils/string.hpp +++ b/src/common/utils/string.hpp @@ -8,8 +8,6 @@ #include #include -using namespace std::string_view_literals; - namespace utils::string { #ifdef __clang__ diff --git a/src/windows-emulator/syscalls/section.cpp b/src/windows-emulator/syscalls/section.cpp index 655a15ff..cb89bc6b 100644 --- a/src/windows-emulator/syscalls/section.cpp +++ b/src/windows-emulator/syscalls/section.cpp @@ -7,6 +7,8 @@ namespace syscalls { + using namespace std::string_view_literals; + NTSTATUS handle_NtCreateSection(const syscall_context& c, const emulator_object section_handle, const ACCESS_MASK /*desired_access*/, const emulator_object>> object_attributes,