From be11364c58bd59029cc70e3458d66e0dc09aa5af Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 9 Mar 2020 14:39:19 +0100 Subject: [PATCH] Remvoe the bitsery c-array attempt I'll just use vectors and a thin wrapper instead, shouldn't have much overhead. --- src/common/bitsery.h | 66 -------------------------------------- src/common/serialization.h | 1 - 2 files changed, 67 deletions(-) delete mode 100644 src/common/bitsery.h diff --git a/src/common/bitsery.h b/src/common/bitsery.h deleted file mode 100644 index 15c9abed..00000000 --- a/src/common/bitsery.h +++ /dev/null @@ -1,66 +0,0 @@ -// yabridge: a Wine VST bridge -// Copyright (C) 2020 Robbert van der Helm -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . - -#pragma once - -// This is a modified version of `bitsery::ext::PointerOwner` in an attempt to -// support C-style arrays with no compile time known length. This should be -// upstreamed if it works. - -#include - -// TODO: Implement - -namespace bitsery { -namespace ext { -template