There exists at least one compiler on one platform that doesn't know how to assert on a std::shared_ptr<>

Appease it by being very very very explicit about what I mean

llvm-svn: 280328
This commit is contained in:
Enrico Granata 2016-09-01 00:32:53 +00:00
parent 7eef5fa147
commit 4fd2f404ae
1 changed files with 1 additions and 1 deletions

View File

@ -1097,7 +1097,7 @@ protected:
m_base_addr(base),
m_is_valid(true)
{
lldbassert(process_sp);
lldbassert(process_sp.get() != nullptr);
}
bool