forked from OSchip/llvm-project
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:
parent
7eef5fa147
commit
4fd2f404ae
|
@ -1097,7 +1097,7 @@ protected:
|
|||
m_base_addr(base),
|
||||
m_is_valid(true)
|
||||
{
|
||||
lldbassert(process_sp);
|
||||
lldbassert(process_sp.get() != nullptr);
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
Loading…
Reference in New Issue