summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2021-01-03 10:58:09 +1100
committerMaxime Coste <mawww@kakoune.org>2021-01-03 10:58:09 +1100
commita0c23ccb720cb10469c4dfd77342524d6f607a9c (patch)
treec9276c4f31d53d66efd0d1e6cd58d51884135add /src/input_handler.cc
parent291f8a6a859e260ca491ad0dadfc835d081732c9 (diff)
Add missing limits includes
Fixes #4003
Diffstat (limited to 'src/input_handler.cc')
-rw-r--r--src/input_handler.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc
index b75efd94..a287b2db 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -1,5 +1,3 @@
-#include <utility>
-
#include "input_handler.hh"
#include "buffer_manager.hh"
@@ -19,6 +17,9 @@
#include "window.hh"
#include "word_db.hh"
+#include <utility>
+#include <limits>
+
namespace Kakoune
{