From fbe748ae868feddf8dd7169ce89206bc29bbb11c Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Wed, 2 May 2018 22:21:11 +0000 Subject: [PATCH] Use conventional spelling of always-failing assert. Fixes -Wstring-conversion warning that was breaking -Werror builds. llvm-svn: 331406 --- lldb/source/Core/Module.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Core/Module.cpp b/lldb/source/Core/Module.cpp index 94fbc72..db198d3 100644 --- a/lldb/source/Core/Module.cpp +++ b/lldb/source/Core/Module.cpp @@ -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"); } } -- 2.7.4