<rdar://problem/13011717>

Fixed a compilation error that occurs when "lldb.macosx.heap" is imported and "ptr_refs" is used.

llvm-svn: 172876
This commit is contained in:
Greg Clayton 2013-01-19 00:35:24 +00:00
parent 7ba78c679c
commit 746a28bb55
1 changed files with 4 additions and 1 deletions
lldb/examples/darwin/heap_find/heap

View File

@ -63,7 +63,7 @@
//
// This is a clue that the 0x104008000 is a "lldb_private::Process *".
//===----------------------------------------------------------------------===//
// C includes
#include <assert.h>
#include <ctype.h>
#include <dlfcn.h>
@ -73,6 +73,9 @@
#include <objc/objc-runtime.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
// C++ includes
#include <vector>
//----------------------------------------------------------------------