changeset 1060:599e3d6d0dbd

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)
author Frits van Bommel <fvbommel wxs.nl>
date Sun, 08 Mar 2009 09:57:20 +0100
parents 7f0e5ae75fcc
children 616d7c90bb6a
files bin/ldmd
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/bin/ldmd	Sun Mar 08 04:23:44 2009 +0100
+++ b/bin/ldmd	Sun Mar 08 09:57:20 2009 +0100
@@ -14,7 +14,6 @@
 fi
 
 declare -a ARGS
-SeenFile=0
 IDX=0
 for arg; do
     case "$arg" in
@@ -29,11 +28,6 @@
         # Are these ever used?
         arg="-hidden-debug${arg:1}"
         ;;
-    -*)
-        ;;
-    *)
-        SeenFile=1
-        ;;
     esac
     ARGS[IDX++]="$arg"
 done