1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Fix warning converting from void* to boolean introduced in r301153.

llvm-svn: 301155
This commit is contained in:
Frederich Munch 2017-04-24 02:51:40 +00:00
parent 1ed5e1a318
commit 5f12ec7493

View File

@ -61,7 +61,7 @@ public:
Handles.push_back(Handle);
} else {
#ifndef LLVM_ON_WIN32
if (Process) {
if (Process != nullptr) {
if (CanClose)
DLClose(Process);
if (Process == Handle)