From a24abdae192bf0e4cc19a1e40c4bbd843a01ade7 Mon Sep 17 00:00:00 2001 From: Nathan Lanza Date: Mon, 7 Jun 2021 01:48:02 -0400 Subject: [PATCH] Include utility header in autoreset.hpp for std::move --- include/ftxui/util/autoreset.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/ftxui/util/autoreset.hpp b/include/ftxui/util/autoreset.hpp index 5c27dc8..2492d8c 100644 --- a/include/ftxui/util/autoreset.hpp +++ b/include/ftxui/util/autoreset.hpp @@ -1,6 +1,8 @@ #ifndef FTXUI_UTIL_AUTORESET_HPP #define FTXUI_UTIL_AUTORESET_HPP +#include + namespace ftxui { /// Assign a value to a variable, reset its old value when going out of scope.