comparison lphobos/internal/switch.d @ 473:373489eeaf90

Applied downs' lphobos update
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 04 Aug 2008 19:28:49 +0200
parents 36ab367572df
children
comparison
equal deleted inserted replaced
472:15c804b6ce77 473:373489eeaf90
420 default: 420 default:
421 break; 421 break;
422 } 422 }
423 } 423 }
424 424
425 425 void _d_switch_error(string fn, int line)
426 426 {
427 throw new Exception(fn~toString(line)~": switch missing default");
428 }