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

loplugin:redundantpointerops (clang-cl)

Change-Id: I5d4a1c3746b0eec02e022e5ffefd1a30a01948cd
üst 7901d47c
......@@ -363,7 +363,7 @@ STDMETHODIMP_(ULONG) EmbedDocument_Impl::Release()
STDMETHODIMP EmbedDocument_Impl::GetClassID( CLSID* pClassId )
{
*pClassId = *&m_guid;
*pClassId = m_guid;
return S_OK;
}
......
......@@ -391,7 +391,7 @@ STDMETHODIMP_(ULONG) InprocEmbedDocument_Impl::Release()
STDMETHODIMP InprocEmbedDocument_Impl::GetClassID( CLSID* pClassId )
{
*pClassId = *&m_guid;
*pClassId = m_guid;
return S_OK;
}
......
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