From 3a9e270909d2e5cba53ea638fce7bd23543542c6 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Mon, 13 Apr 2020 21:06:19 +0200 Subject: [PATCH] remove unsued unitily from common source --- dexed-d/src/common.d | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/dexed-d/src/common.d b/dexed-d/src/common.d index 09cc8dd9..ea3c3278 100644 --- a/dexed-d/src/common.d +++ b/dexed-d/src/common.d @@ -405,34 +405,7 @@ T parseAndVisit(T : ASTVisitor, A...)(const(char)[] source, A a) * By default libdparse outputs errors and warnings to the standard streams. * This function prevents that. */ -void ignoreErrors(string, size_t, size_t, string, bool) @system -{} - -/** - * Iterator used to pass an array of strings from Freepascal to D. - */ -struct PPCharRange(C) -{ -private: - C ppChars; - C base; - int count; -public: - this(C ppChars, int count) - { - this.ppChars= ppChars; - this.count = count; - base = ppChars; - } - void popFront() { ppChars += size_t.sizeof; } - typeof(**ppChars)[] front() { return (*ppChars)[0 .. (*ppChars).strlen]; } - bool empty() { return ((ppChars - base) / size_t.sizeof) >= count; } -} - -PPCharRange!C ppcharRange(C)(C ppChars, int count) -{ - return PPCharRange!C(ppChars, count); -} +void ignoreErrors(string, size_t, size_t, string, bool) @system {} /** * Split a C string representing a list of filenames into an array of strings.