forked from OSchip/llvm-project
[dsymutil] Exclude namespace from ifdef in CFBundle
Should fix build failure introduced by r319416 on non-darwin hosts. llvm-svn: 319417
This commit is contained in:
parent
c635376d7c
commit
1c223018ef
|
@ -16,10 +16,12 @@
|
|||
#include <assert.h>
|
||||
#include <glob.h>
|
||||
#include <memory>
|
||||
#endif
|
||||
|
||||
namespace llvm {
|
||||
namespace dsymutil {
|
||||
|
||||
#ifdef __APPLE__
|
||||
/// Deleter that calls CFRelease rather than deleting the pointer.
|
||||
template <typename T> struct CFDeleter {
|
||||
void operator()(T *P) {
|
||||
|
|
Loading…
Reference in New Issue