summaryrefslogtreecommitdiff
path: root/src/proto.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-13 22:59:32 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-13 22:59:32 +0200
commitfa55cfc69d2b14761e2a8bd85bc1e0d82df770aa (patch)
tree3420b78d3aa0d58695f9a660592b655ac2f22fb1 /src/proto.h
parentd5abb4c87727eecb71b0e8ffdda60fc9598272f3 (diff)
downloadvim-git-fa55cfc69d2b14761e2a8bd85bc1e0d82df770aa.tar.gz
patch 8.1.1684: profiling functionality is spread outv8.1.1684
Problem: Profiling functionality is spread out. Solution: Put profiling functionality in profiling.c. (Yegappan Lakshmanan, closes #4666)
Diffstat (limited to 'src/proto.h')
-rw-r--r--src/proto.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/proto.h b/src/proto.h
index 1c37bfa18..9119a528c 100644
--- a/src/proto.h
+++ b/src/proto.h
@@ -171,6 +171,9 @@ void qsort(void *base, size_t elm_count, size_t elm_size, int (*cmp)(const void
# include "ops.pro"
# include "option.pro"
# include "popupmnu.pro"
+# if defined(FEAT_PROFILE) || defined(FEAT_RELTIME)
+# include "profiler.pro"
+# endif
# ifdef FEAT_QUICKFIX
# include "quickfix.pro"
# endif