Mercurial > vim
changeset 10036:ab6320d74331 v7.4.2290
commit https://github.com/vim/vim/commit/7f7bd297d6d989254f71c694f1c72d07cbc5c306
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Aug 28 21:21:31 2016 +0200
patch 7.4.2290
Problem: Compiler warning in tiny build. (Tony Mechelynck)
Solution: Add #ifdef around infinity_str().
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 28 Aug 2016 21:30:07 +0200 |
parents | baaad4690bfb |
children | f359ee3f123e |
files | src/message.c src/version.c |
diffstat | 2 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/message.c +++ b/src/message.c @@ -3990,6 +3990,7 @@ tv_float(typval_T *tvs, int *idxp) # endif #endif +#ifdef FEAT_FLOAT /* * Return the representation of infinity for printf() function: * "-inf", "inf", "+inf", " inf", "-INF", "INF", "+INF" or " INF". @@ -4011,6 +4012,7 @@ infinity_str(int positive, idx += 4; return table[idx]; } +#endif /* * This code was included to provide a portable vsnprintf() and snprintf().