[Issue 521] New: frontend: incorrect error(Loc, const char*, char*) declaration in mars.h
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Wed Nov 15 06:00:07 PST 2006
http://d.puremagic.com/issues/show_bug.cgi?id=521
Summary: frontend: incorrect error(Loc, const char*, char*)
declaration in mars.h
Product: D
Version: 0.174
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: bugzilla at digitalmars.com
ReportedBy: thomas-dloop at kuehne.cn
void error(Loc loc, const char *format, ...);
void error(Loc loc, const char *format, char *);
should be:
void error(Loc loc, const char *format, ...);
void error(Loc loc, const char *format, va_list ap);
--
More information about the Digitalmars-d-bugs
mailing list