From 302990a0ba3edae31fa2268b49df972becc3e2e2 Mon Sep 17 00:00:00 2001 From: Frits van Bommel Date: Sun, 8 Mar 2009 09:57:20 +0100 Subject: [PATCH] Remove a dead variable from ldmd. (It used to be used to pass an extra -help to ldc when no files were specified, but we handle that in ldc itself now) --- bin/ldmd | 6 ------ 1 file changed, 6 deletions(-) diff --git a/bin/ldmd b/bin/ldmd index c9276d39..7cb84901 100755 --- a/bin/ldmd +++ b/bin/ldmd @@ -14,7 +14,6 @@ if [ ! -x "$LDC" ]; then fi declare -a ARGS -SeenFile=0 IDX=0 for arg; do case "$arg" in @@ -29,11 +28,6 @@ for arg; do # Are these ever used? arg="-hidden-debug${arg:1}" ;; - -*) - ;; - *) - SeenFile=1 - ;; esac ARGS[IDX++]="$arg" done