Use conventional spelling of always-failing assert.

Fixes -Wstring-conversion warning that was breaking -Werror builds.

llvm-svn: 331406
This commit is contained in:
Richard Smith 2018-05-02 22:21:11 +00:00
parent d366e36bbf
commit fbe748ae86
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ void Module::SetUUID(const lldb_private::UUID &uuid) {
m_uuid = uuid;
m_did_set_uuid = true;
} else {
lldbassert(!"Attempting to overwrite the existing module UUID");
lldbassert(0 && "Attempting to overwrite the existing module UUID");
}
}