diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-07-16 12:46:07 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-07-16 12:46:07 -0400 |
commit | 0412c17a6566a3cc5d324773abcf6e8a1ad40bc6 (patch) | |
tree | 1b8beaf1d24f394efd0b6e0322d1efbb8515cf6f /src/nvim/eval.h | |
parent | e1075ffff94fe0ddc9eb90980ad798e68c090fc6 (diff) | |
parent | 6d0f9417ec2e9dec9666fa9c7a9b5b890f25d36a (diff) | |
download | rneovim-0412c17a6566a3cc5d324773abcf6e8a1ad40bc6.tar.gz rneovim-0412c17a6566a3cc5d324773abcf6e8a1ad40bc6.tar.bz2 rneovim-0412c17a6566a3cc5d324773abcf6e8a1ad40bc6.zip |
Merge pull request #839 from aktau/platform-abstract-time-fn
viml: impl profiling on top of uv_hrtime()
Diffstat (limited to 'src/nvim/eval.h')
-rw-r--r-- | src/nvim/eval.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/eval.h b/src/nvim/eval.h index 66953faeb7..2f36a46f70 100644 --- a/src/nvim/eval.h +++ b/src/nvim/eval.h @@ -1,6 +1,8 @@ #ifndef NVIM_EVAL_H #define NVIM_EVAL_H +#include "nvim/profile.h" + /* Defines for Vim variables. These must match vimvars[] in eval.c! */ enum { VV_COUNT, |