Index: lldb/trunk/tools/debugserver/source/MacOSX/MachVMMemory.h =================================================================== --- lldb/trunk/tools/debugserver/source/MacOSX/MachVMMemory.h +++ lldb/trunk/tools/debugserver/source/MacOSX/MachVMMemory.h @@ -21,7 +21,6 @@ class MachVMMemory { public: - enum { kInvalidPageSize = ~0 }; MachVMMemory(); ~MachVMMemory(); nub_size_t Read(task_t task, nub_addr_t address, void *data, nub_size_t data_count); Index: lldb/trunk/tools/debugserver/source/MacOSX/MachVMMemory.cpp =================================================================== --- lldb/trunk/tools/debugserver/source/MacOSX/MachVMMemory.cpp +++ lldb/trunk/tools/debugserver/source/MacOSX/MachVMMemory.cpp @@ -19,6 +19,8 @@ #include #include +static const vm_size_t kInvalidPageSize = ~0; + MachVMMemory::MachVMMemory() : m_page_size (kInvalidPageSize), m_err (0)