From faa44b6704de22b291269a3c0c118926c21ecaa4 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Fri, 9 Jun 2017 19:27:54 +0200 Subject: [PATCH] Remove deprecated tanya.container.vector --- source/tanya/container/array.d | 3 --- source/tanya/container/vector.d | 16 ---------------- 2 files changed, 19 deletions(-) delete mode 100644 source/tanya/container/vector.d diff --git a/source/tanya/container/array.d b/source/tanya/container/array.d index 472b376..524afef 100644 --- a/source/tanya/container/array.d +++ b/source/tanya/container/array.d @@ -22,9 +22,6 @@ import std.meta; import std.traits; import tanya.memory; -deprecated("Use tanya.container.array instead.") -alias Vector = Array; - /** * Random-access range for the $(D_PSYMBOL Array). * diff --git a/source/tanya/container/vector.d b/source/tanya/container/vector.d deleted file mode 100644 index a957fe5..0000000 --- a/source/tanya/container/vector.d +++ /dev/null @@ -1,16 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -/** - * Single-dimensioned array. - * - * Copyright: Eugene Wissner 2016-2017. - * License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/, - * Mozilla Public License, v. 2.0). - * Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner) - */ -deprecated("Use tanya.container.array instead.") -module tanya.container.vector; - -public import tanya.container.array;