win32/Com: use if with init-statement
This commit is contained in:
parent
ed1a995bff
commit
22b840c2f1
@ -29,8 +29,8 @@
|
||||
class COM {
|
||||
public:
|
||||
COM() {
|
||||
HRESULT result = CoInitializeEx(nullptr, COINIT_MULTITHREADED);
|
||||
if (FAILED(result)) {
|
||||
if (HRESULT result = CoInitializeEx(nullptr, COINIT_MULTITHREADED);
|
||||
FAILED(result)) {
|
||||
throw FormatHResultError(result, "Unable to initialize COM");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user