From b6bc9d72f65a5086f310f321e969d96e9a559e75 Mon Sep 17 00:00:00 2001 From: Guillaume Chatelet Date: Tue, 26 Sep 2023 11:45:04 +0200 Subject: [libc] Mass replace enclosing namespace (#67032) This is step 4 of https://discourse.llvm.org/t/rfc-customizable-namespace-to-allow-testing-the-libc-when-the-system-libc-is-also-llvms-libc/73079 --- libc/src/gpu/rpc_host_call.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/src/gpu/rpc_host_call.cpp') diff --git a/libc/src/gpu/rpc_host_call.cpp b/libc/src/gpu/rpc_host_call.cpp index b39bef6..7b9b9f2 100644 --- a/libc/src/gpu/rpc_host_call.cpp +++ b/libc/src/gpu/rpc_host_call.cpp @@ -12,7 +12,7 @@ #include "src/__support/RPC/rpc_client.h" #include "src/__support/common.h" -namespace __llvm_libc { +namespace LIBC_NAMESPACE { // This calls the associated function pointer on the RPC server with the given // arguments. We expect that the pointer here is a valid pointer on the server. @@ -26,4 +26,4 @@ LLVM_LIBC_FUNCTION(void, rpc_host_call, (void *fn, void *data, size_t size)) { port.close(); } -} // namespace __llvm_libc +} // namespace LIBC_NAMESPACE -- cgit v1.1