mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-07 11:51:13 +00:00
really fix the windows build.
llvm-svn: 209964
This commit is contained in:
parent
54f41582c2
commit
9e5e3d9f23
@ -210,7 +210,7 @@ static error_code GetFileNameFromHandle(HANDLE FileHandle,
|
||||
return windows_error(::GetLastError());
|
||||
else {
|
||||
Name = Filename;
|
||||
return windows_error::success;
|
||||
return error_code();
|
||||
}
|
||||
}
|
||||
|
||||
@ -249,7 +249,7 @@ static std::string FindProgram(const std::string &Program, error_code &ec) {
|
||||
break;
|
||||
} else {
|
||||
// We found the path! Return it.
|
||||
ec = windows_error::success;
|
||||
ec = error_code();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user