comparison dmd/Declaration.d @ 184:9f4e5ac4f0a3

One step closer to building on posix. There are two missing symbols so it actually doesn't build but previously it didn't build correctly anyway.
author Jacob Carlborg <doob@me.com>
date Tue, 02 Nov 2010 08:46:11 +0100
parents 190ba98276b3
children b0d41ff5e0df
comparison
equal deleted inserted replaced
183:190ba98276b3 184:9f4e5ac4f0a3
250 case LINK.LINKpascal: 250 case LINK.LINKpascal:
251 return ident.toChars(); 251 return ident.toChars();
252 252
253 case LINK.LINKcpp: 253 case LINK.LINKcpp:
254 version (CPP_MANGLE) { 254 version (CPP_MANGLE) {
255 return to!(string)(cpp_mangle(this)); 255 return cpp_mangle(this);
256 } else { 256 } else {
257 // Windows C++ mangling is done by C++ back end 257 // Windows C++ mangling is done by C++ back end
258 return ident.toChars(); 258 return ident.toChars();
259 } 259 }
260 260