www.digitalmars.com Home | Search | C & C++ | D | DMDScript | News Groups | index | prev | next
Archives

D Programming
D
D.gnu
digitalmars.D
digitalmars.D.bugs
digitalmars.D.dtl
digitalmars.D.dwt
digitalmars.D.announce
digitalmars.D.learn
digitalmars.D.debugger

C/C++ Programming
c++
c++.announce
c++.atl
c++.beta
c++.chat
c++.command-line
c++.dos
c++.dos.16-bits
c++.dos.32-bits
c++.idde
c++.mfc
c++.rtl
c++.stl
c++.stl.hp
c++.stl.port
c++.stl.sgi
c++.stlsoft
c++.windows
c++.windows.16-bits
c++.windows.32-bits
c++.wxwindows

digitalmars.empire
digitalmars.DMDScript

DMDScript - 176

complains about some shadowing stuff

I changed lexer.d(1287) to make it work. All v1 was v.



			foreach (tchar v1; start[0 .. p - start])
			    {
				if ('0' <= v1 && v1 <= '9')
				    v1 -= '0';
				else if ('a' <= v1 && v1 <= 'f')
				    v1 -= ('a' - 10);
				else if ('A' <= v1 && v1 <= 'F')
				    v1 -= ('A' - 10);
				else
				    assert(0);
				realvalue *= base;
				realvalue += v1;
			    }
Dec 04 2006