[svn r263] Changed *** ATTENTION *** to warnings.

Implemented debug info for dynamic arrays, start of general composite support.
This commit is contained in:
Tomas Lindquist Olsen 2008-06-09 15:52:22 +02:00
parent 1e87ae15ef
commit 37b6748897
5 changed files with 236 additions and 66 deletions

View file

@ -71,7 +71,7 @@ namespace Logger
}
void attention(const Loc& loc, const char* fmt,...)
{
printf("***ATTENTION***: %s: ", loc.toChars());
printf("Warning: %s: ", loc.toChars());
va_list va;
va_start(va,fmt);
vprintf(fmt,va);