From ad134527d48cca739f68b7f7595666c50d445242 Mon Sep 17 00:00:00 2001 From: Akiva Levy Date: Thu, 4 Jun 2020 23:05:22 -0700 Subject: [PATCH] Fix missing include of cstdint in yoga event.h (#593) This is a short-term fix until [PR #1009][1] is approved and merged into Yoga. Once merged, the latest version of Yoga may be included, as this will be no longer necessary. The effects of this issue can be seen in NodeGUI's [issue 591][2]. [1]: https://github.com/facebook/yoga/pull/1009 [2]: https://github.com/nodegui/nodegui/issues/591 --- src/cpp/include/deps/yoga/event/event.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cpp/include/deps/yoga/event/event.h b/src/cpp/include/deps/yoga/event/event.h index 253edbcb3..8c6584b31 100644 --- a/src/cpp/include/deps/yoga/event/event.h +++ b/src/cpp/include/deps/yoga/event/event.h @@ -8,6 +8,7 @@ #pragma once #include +#include #include #include