From 38b2798bb7e0d09fd77bff16e7252aecba460308 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Wed, 5 Mar 2025 23:13:04 -0500 Subject: [PATCH] chore: remove unused common/stdfstream --- src/lib/common/CMakeLists.txt | 1 - src/lib/common/stdfstream.h | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 src/lib/common/stdfstream.h diff --git a/src/lib/common/CMakeLists.txt b/src/lib/common/CMakeLists.txt index 28e278ab4..72a5315f3 100644 --- a/src/lib/common/CMakeLists.txt +++ b/src/lib/common/CMakeLists.txt @@ -11,7 +11,6 @@ add_library(common INTERFACE IInterface.h stddeque.h stdexcept.h - stdfstream.h stdistream.h stdlist.h stdmap.h diff --git a/src/lib/common/stdfstream.h b/src/lib/common/stdfstream.h deleted file mode 100644 index 695b74e56..000000000 --- a/src/lib/common/stdfstream.h +++ /dev/null @@ -1,15 +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 - -#include "stdpre.h" - -#include "stdistream.h" -#include - -#include "stdpost.h"