Commits

Ben Langmuir committed 54f6bb41ff8
Fix leak of LookupCache The lookup cache isn't allocated in the ASTContext, so seting up a destructor cleanup isn't sufficient to get the memory released. Luckily SourceFile and BuiltinUnit already have their own destructor called, so we can use std::unique_ptr. rdar://problem/22387897 Swift SVN r31561