From 460c698e5f73b1c60125cfd031a09db8d46366c4 Mon Sep 17 00:00:00 2001 From: "Jon Thysell (JAUNTY)" Date: Sun, 8 Mar 2020 21:15:57 -0700 Subject: [PATCH] Fix MSVC build break in VS 2019 (#28253) Summary: Updating react-native-windows to build with Visual Studio 2019 and the v142 toolset. ## Changelog [Internal] [Fixed] - Fix MSVC build break in VS 2019 Pull Request resolved: https://github.com/facebook/react-native/pull/28253 Test Plan: No real change, only adding a missing include for `stdexcept`. Reviewed By: cpojer Differential Revision: D20321273 Pulled By: shergin fbshipit-source-id: ffe8b4d3a96ce4ed1db303020d77a806637e88bc --- ReactCommon/turbomodule/core/TurboModuleBinding.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ReactCommon/turbomodule/core/TurboModuleBinding.cpp b/ReactCommon/turbomodule/core/TurboModuleBinding.cpp index cfb9ecd3e89..b89e4061d4e 100644 --- a/ReactCommon/turbomodule/core/TurboModuleBinding.cpp +++ b/ReactCommon/turbomodule/core/TurboModuleBinding.cpp @@ -7,6 +7,7 @@ #include "TurboModuleBinding.h" +#include #include #include