From 8a8d3b3ef5d676fa5da550d690faf68f2b5bd45f Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Tue, 2 Jan 2024 14:56:20 +0800 Subject: [PATCH] Remove redundant static in anonymous fileproviderxpc utils namespace Signed-off-by: Claudio Cambra --- src/gui/macOS/fileproviderxpc_mac_utils.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/macOS/fileproviderxpc_mac_utils.mm b/src/gui/macOS/fileproviderxpc_mac_utils.mm index 36c6040033..99ee755f8e 100644 --- a/src/gui/macOS/fileproviderxpc_mac_utils.mm +++ b/src/gui/macOS/fileproviderxpc_mac_utils.mm @@ -22,8 +22,8 @@ namespace { -static const char *const clientCommunicationServiceName = "com.nextcloud.desktopclient.ClientCommunicationService"; -static NSString *const nsClientCommunicationServiceName = [NSString stringWithUTF8String:clientCommunicationServiceName]; +const char *const clientCommunicationServiceName = "com.nextcloud.desktopclient.ClientCommunicationService"; +NSString *const nsClientCommunicationServiceName = [NSString stringWithUTF8String:clientCommunicationServiceName]; }