changeset 22991:cb7df44afe7e v8.2.2042

patch 8.2.2042: build failure with +profile but without +reltime Commit: https://github.com/vim/vim/commit/813196784ad2a3a8cd65be5e975769d9768a728e Author: Bram Moolenaar <Bram@vim.org> Date: Wed Nov 25 11:47:39 2020 +0100 patch 8.2.2042: build failure with +profile but without +reltime Problem: Build failure with +profile but without +reltime. Solution: Adjust #ifdef. (Christian Brabandt, closes https://github.com/vim/vim/issues/7361)
author Bram Moolenaar <Bram@vim.org>
date Wed, 25 Nov 2020 12:00:04 +0100
parents d46d4c6dde13
children 116448e826f8
files src/syntax.c src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -6707,7 +6707,7 @@ syntime_report(void)
 {
     int		idx;
     synpat_T	*spp;
-# ifdef FEAT_FLOAT
+# if defined(FEAT_RELTIME) && defined(FEAT_FLOAT)
     proftime_T	tm;
 # endif
     int		len;
@@ -6737,7 +6737,7 @@ syntime_report(void)
 	    p->match = spp->sp_time.match;
 	    total_count += spp->sp_time.count;
 	    p->slowest = spp->sp_time.slowest;
-# ifdef FEAT_FLOAT
+# if defined(FEAT_RELTIME) && defined(FEAT_FLOAT)
 	    profile_divide(&spp->sp_time.total, spp->sp_time.count, &tm);
 	    p->average = tm;
 # endif
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2042,
+/**/
     2041,
 /**/
     2040,