Skip to content

Commit

Permalink
Fix a compilation error on x86 build
Browse files Browse the repository at this point in the history
  • Loading branch information
sdottaka committed Jan 14, 2024
1 parent a22a6b3 commit 6d7cf17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WinWebDiffLib/WebToolWindow.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ class CWebToolWindow : public IWebToolWindow, IWebDiffEventHandler
ULONG STDMETHODCALLTYPE AddRef(void) override { return ++m_nRef; }
ULONG STDMETHODCALLTYPE Release(void) override { if (--m_nRef == 0) { return 0; } return m_nRef; }

HRESULT Invoke(const WebDiffEvent& event)
HRESULT STDMETHODCALLTYPE Invoke(const WebDiffEvent& event)
{
switch (event.type)
{
Expand Down

0 comments on commit 6d7cf17

Please sign in to comment.