comparison dmd/mars.c @ 542:1e9ca2889b07

Missing 'break' in osx code path.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sun, 24 Aug 2008 17:57:53 +0200
parents 4b7925bc1605
children 406aee3416bb
comparison
equal deleted inserted replaced
541:4b7925bc1605 542:1e9ca2889b07
759 759
760 case OSMacOSX: 760 case OSMacOSX:
761 VersionCondition::addPredefinedGlobalIdent("darwin"); 761 VersionCondition::addPredefinedGlobalIdent("darwin");
762 VersionCondition::addPredefinedGlobalIdent("Posix"); 762 VersionCondition::addPredefinedGlobalIdent("Posix");
763 global.params.tt_os = "-pc-darwin-gnu"; 763 global.params.tt_os = "-pc-darwin-gnu";
764 break;
764 765
765 default: 766 default:
766 assert(false && "Target OS not supported"); 767 assert(false && "Target OS not supported");
767 } 768 }
768 769