comparison dmd2/mars.h @ 797:340acf1535d0

Removed KDevelop3 project files, CMake can generate them just fine! Fixed function literals in static initializers. Changed alignment of delegates from 2*PTRSIZE to just PTRSIZE. Changed errors to go to stderr instead of stdout. Fairly major rewriting of struct/union/class handling, STILL A BIT BUGGY !!!
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sat, 29 Nov 2008 21:25:43 +0100
parents f04dde6e882c
children 356e65836fb5
comparison
equal deleted inserted replaced
796:6e7a4c3b64d2 797:340acf1535d0
348 void err_nomem(); 348 void err_nomem();
349 void inifile(const char *argv0, const char *inifile); 349 void inifile(const char *argv0, const char *inifile);
350 void halt(); 350 void halt();
351 351
352 /*** Where to send error messages ***/ 352 /*** Where to send error messages ***/
353 #if IN_GCC 353 #if IN_GCC || IN_LLVM
354 #define stdmsg stderr 354 #define stdmsg stderr
355 #else 355 #else
356 #define stdmsg stdout 356 #define stdmsg stdout
357 #endif 357 #endif
358 358