practicalswift
1339b5403b
Consistent use of header comment format.
...
Correct format:
//===--- Name of file - Description ----------------------------*- Lang -*-===//
2016-01-04 13:26:31 +01:00
Zach Panzarino
e3a4147ac9
Update copyright date
2015-12-31 23:28:40 +00:00
Joe Groff
9ea30d00fe
Runtime: Remove custom operator new(InPlace).
...
C++ no longer imposes a null check requirement on placement 'new', and clang no longer emits the null check. This hack is no longer needed.
2015-11-18 12:31:24 -08:00
Joe Groff
a3b6bef4e5
Runtime: Use new(InPlace) in more places to avoid unwanted null checks.
2015-11-17 14:13:48 -08:00
Dave Abrahams
096ffc6eaf
Silence warnings in the release build
...
Swift SVN r5950
2013-07-01 21:42:16 +00:00
Joe Groff
dbc314cdab
Add a -use-malloc switch for memory debugging.
...
This flag makes ASTContext and SILModule's allocators go through malloc instead of using bump pointer allocators, so that GuardMalloc or similar tools can be used to look for memory bugs.
Swift SVN r5472
2013-06-04 20:35:01 +00:00