Bug 1757415 - Undef small in ContentEventHandler.cpp to avoid conflicting with the definition in rpcndr.h from the Windows SDK. r=smaug

Differential Revision: https://phabricator.services.mozilla.com/D139849
This commit is contained in:
Ryan VanderMeulen 2022-02-28 21:03:38 +00:00
parent 82a6eea4e8
commit 7e3d69d382

View File

@ -41,6 +41,11 @@
#include <algorithm>
// Work around conflicting define in rpcndr.h
#if defined(small)
# undef small
#endif // defined(small)
namespace mozilla {
using namespace dom;