Remove a stray __stdcall that was breaking the x86 build (#5554)

This commit is contained in:
Dustin L. Howett (MSFT) 2020-04-24 16:46:01 -07:00 committed by GitHub
parent 214163ebb7
commit 7eb0a26b91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -89,7 +89,7 @@ void NonClientIslandWindow::MakeWindow() noexcept
// Function Description:
// - The window procedure for the drag bar forwards clicks on its client area to its parent as non-client clicks.
LRESULT __stdcall NonClientIslandWindow::_InputSinkMessageHandler(UINT const message, WPARAM const wparam, LPARAM const lparam) noexcept
LRESULT NonClientIslandWindow::_InputSinkMessageHandler(UINT const message, WPARAM const wparam, LPARAM const lparam) noexcept
{
std::optional<UINT> nonClientMessage{ std::nullopt };