Add missing <memory> include to text_input_model.h (flutter/engine#8562)

text_input_model.h uses std::unique_ptr but does not include the memory header.
This commit is contained in:
Diego Ballesteros Villamizar 2019-04-12 19:48:11 +02:00 committed by Chris Bracken
parent 5ea11318c5
commit 9d9892d005

View File

@ -5,6 +5,7 @@
#ifndef FLUTTER_SHELL_PLATFORM_CPP_TEXT_INPUT_MODEL_H_
#define FLUTTER_SHELL_PLATFORM_CPP_TEXT_INPUT_MODEL_H_
#include <memory>
#include <string>
#include "rapidjson/document.h"