From 9d9892d005cfb8403c908640bfd3676b70ef2bdb Mon Sep 17 00:00:00 2001 From: Diego Ballesteros Villamizar Date: Fri, 12 Apr 2019 19:48:11 +0200 Subject: [PATCH] Add missing include to text_input_model.h (flutter/engine#8562) text_input_model.h uses std::unique_ptr but does not include the memory header. --- engine/src/flutter/shell/platform/common/cpp/text_input_model.h | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/src/flutter/shell/platform/common/cpp/text_input_model.h b/engine/src/flutter/shell/platform/common/cpp/text_input_model.h index 54afd055216..e3ea19bae90 100644 --- a/engine/src/flutter/shell/platform/common/cpp/text_input_model.h +++ b/engine/src/flutter/shell/platform/common/cpp/text_input_model.h @@ -5,6 +5,7 @@ #ifndef FLUTTER_SHELL_PLATFORM_CPP_TEXT_INPUT_MODEL_H_ #define FLUTTER_SHELL_PLATFORM_CPP_TEXT_INPUT_MODEL_H_ +#include #include #include "rapidjson/document.h"