# HG changeset patch # User Bram Moolenaar # Date 1611612903 -3600 # Node ID 5a524e16570b5252e93e33df58f683ca0ab73259 # Parent 34b4eb3a8458f15db203f30a9dbc990f25b6ef44 patch 8.2.2410: build failure without the +profiling feature Commit: https://github.com/vim/vim/commit/ff0e57fe77b1a87a034191c629730b081f6fb7ad Author: Bram Moolenaar Date: Mon Jan 25 23:02:38 2021 +0100 patch 8.2.2410: build failure without the +profiling feature Problem: Build failure without the +profiling feature. Solution: Add dummy argument to macro. diff --git a/src/version.c b/src/version.c --- 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 */ /**/ + 2410, +/**/ 2409, /**/ 2408, diff --git a/src/vim9.h b/src/vim9.h --- a/src/vim9.h +++ b/src/vim9.h @@ -415,6 +415,6 @@ extern garray_T def_functions; ((do_profiling == PROF_YES && (dfunc->df_ufunc)->uf_profiling) \ ? (dfunc)->df_instr_prof : (dfunc)->df_instr) #else -# define PROFILING FALSE +# define PROFILING(ufunc) FALSE # define INSTRUCTIONS(dfunc) ((dfunc)->df_instr) #endif