From 1f6f6d5dc64d9a2b05d92fde82b60774a2dcbd9a Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Thu, 6 Nov 2025 15:42:36 -0500 Subject: [PATCH] chore: remove unused Common/Common.h --- src/lib/common/CMakeLists.txt | 1 - src/lib/common/Common.h | 33 --------------------------------- 2 files changed, 34 deletions(-) delete mode 100644 src/lib/common/Common.h diff --git a/src/lib/common/CMakeLists.txt b/src/lib/common/CMakeLists.txt index 09e84e3eae..5716a05517 100644 --- a/src/lib/common/CMakeLists.txt +++ b/src/lib/common/CMakeLists.txt @@ -12,7 +12,6 @@ unset(CLIENT_BINARY) unset(SERVER_BINARY) add_library(common STATIC - Common.h ExitCodes.h I18N.h I18N.cpp diff --git a/src/lib/common/Common.h b/src/lib/common/Common.h deleted file mode 100644 index cfdb6fcad7..0000000000 --- a/src/lib/common/Common.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Deskflow -- mouse and keyboard sharing utility - * SPDX-FileCopyrightText: (C) 2010 - 2018, 2024 - 2025 Symless Ltd. - * SPDX-FileCopyrightText: (C) 2002 - 2007 Chris Schoeneman - * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception - */ - -#pragma once - -#if !SYSAPI_WIN32 -#if HAVE_CONFIG_H -#include "Config.h" -#else -#error "config.h missing" -#endif -#endif - -// define nullptr -#include - -// make assert available since we use it a lot -#include -#include -#include // IWYU pragma: keep -#include // IWYU pragma: keep - -// defined in Carbon -#if !defined(__MACTYPES__) -#if defined(__APPLE__) -#include -#else -#endif -#endif