Kaydet (Commit) 5e790f69 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:unnecessaryparen: shell (clang-cl)

Change-Id: If038a119b0b01bff9f452bb66e855e35c10d06eb
üst f47e2f3b
......@@ -87,7 +87,7 @@ HRESULT STDMETHODCALLTYPE CClassFactory::CreateInstance(
REFIID riid,
void __RPC_FAR *__RPC_FAR *ppvObject)
{
if ((pUnkOuter != nullptr))
if (pUnkOuter != nullptr)
return CLASS_E_NOAGGREGATION;
IUnknown* pUnk = nullptr;
......
......@@ -206,11 +206,11 @@ void initParameter(int argc, char* argv[])
continue;
}
if ((_stricmp(argv[i], "--mapi-dialog") == 0))
if (_stricmp(argv[i], "--mapi-dialog") == 0)
{
gMapiFlags |= MAPI_DIALOG;
}
else if ((_stricmp(argv[i], "--mapi-logon-ui") == 0))
else if (_stricmp(argv[i], "--mapi-logon-ui") == 0)
{
gMapiFlags |= MAPI_LOGON_UI;
}
......@@ -228,7 +228,7 @@ void initParameter(int argc, char* argv[])
gSubject = argv[i+1];
else if (_stricmp(argv[i], "--body") == 0)
gBody = argv[i+1];
else if ((_stricmp(argv[i], "--attach") == 0))
else if (_stricmp(argv[i], "--attach") == 0)
gAttachments.push_back(argv[i+1]);
i++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment