From 854787e6b38d14f348b997c340f989d32c02d4bf Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Thu, 20 Mar 2025 19:00:01 -0400 Subject: [PATCH] chore: remove StdIStream and include istream directly where needed --- src/lib/common/CMakeLists.txt | 1 - src/lib/common/StdIStream.h | 14 -------------- 2 files changed, 15 deletions(-) delete mode 100644 src/lib/common/StdIStream.h diff --git a/src/lib/common/CMakeLists.txt b/src/lib/common/CMakeLists.txt index 556771d6d..434b7b7ea 100644 --- a/src/lib/common/CMakeLists.txt +++ b/src/lib/common/CMakeLists.txt @@ -7,7 +7,6 @@ add_library(common STATIC Common.h IInterface.h StdExcept.h - StdIStream.h StdOStream.h Settings.h Settings.cpp diff --git a/src/lib/common/StdIStream.h b/src/lib/common/StdIStream.h deleted file mode 100644 index f24b4d084..000000000 --- a/src/lib/common/StdIStream.h +++ /dev/null @@ -1,14 +0,0 @@ -/* - * Deskflow -- mouse and keyboard sharing utility - * SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd. - * SPDX-FileCopyrightText: (C) 2002 Chris Schoeneman - * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception - */ - -#pragma once - -#if HAVE_ISTREAM -#include -#else -#include -#endif