aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/message.h
diff options
context:
space:
mode:
authorNicolas Hillegeer <nicolas@hillegeer.com>2014-07-12 20:13:56 +0200
committerNicolas Hillegeer <nicolas@hillegeer.com>2014-07-16 19:07:45 +0200
commit7c6079f6f0d0fc59dd747c2ecd9e1e1ca1e0e66d (patch)
tree47a2797793b037e5badc28a7332c3a4ec314466c /src/nvim/message.h
parent06ca70b191229da4d827d3751fa18ffed17c0189 (diff)
downloadrneovim-7c6079f6f0d0fc59dd747c2ecd9e1e1ca1e0e66d.tar.gz
rneovim-7c6079f6f0d0fc59dd747c2ecd9e1e1ca1e0e66d.tar.bz2
rneovim-7c6079f6f0d0fc59dd747c2ecd9e1e1ca1e0e66d.zip
vim: include used definitions in headers
This is not an exhaustive commit, it merely ameliorates the situations a bit. There are quite a few header files that don't include all the types they use in their function/struct/... definitions. This throws of the testing infrastructure (but is not such a problem for the main binary that has the "tumbleweed of includes"-phenomenon).
Diffstat (limited to 'src/nvim/message.h')
-rw-r--r--src/nvim/message.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/message.h b/src/nvim/message.h
index f04005a7ad..c620597f33 100644
--- a/src/nvim/message.h
+++ b/src/nvim/message.h
@@ -2,6 +2,7 @@
#define NVIM_MESSAGE_H
#include <stdbool.h>
+#include "nvim/eval_defs.h" // for typval_T
/*
* Types of dialogs passed to do_dialog().