commit | 4cfc9198616f535f3d3a0b6b3e9e5f8a2e76988f | [log] [tgz] |
---|---|---|
author | Sylvestre Ledru <sylvestre@debian.org> | Mon Oct 26 08:49:04 2015 +0000 |
committer | Sylvestre Ledru <sylvestre@debian.org> | Mon Oct 26 08:49:04 2015 +0000 |
tree | afbb5a933899975348c16beeef4b4d617d6aa25d | |
parent | f8e461f920c1217cc5e54e197ede061575275699 [diff] [blame] |
Fix a build issue on Debian unstable. The compiler rejected the convertion to ‘bool’ from ‘std::nullptr_t’ llvm-svn: 251276
diff --git a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp index 3e18a40..ddc5bd7 100644 --- a/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp +++ b/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
@@ -1522,7 +1522,7 @@ { if (log) log->Printf("RenderScriptRuntime::LoadAllocation - Couldn't JIT allocation details"); - return nullptr; + return false; } } @@ -1637,7 +1637,7 @@ { if (log) log->Printf("RenderScriptRuntime::SaveAllocation - Couldn't JIT allocation details"); - return nullptr; + return false; } }