diff src/vim.h @ 9659:08df6ad72c56 v7.4.2106

commit https://github.com/vim/vim/commit/ac77aec4daea8d73468fcf4690cb4ccab1d807ed Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 26 22:02:54 2016 +0200 patch 7.4.2106 Problem: Clang warns about missing field in initializer. Solution: Define COMMA and use it. (Kazunobu Kuriyama)
author Christian Brabandt <cb@256bit.org>
date Tue, 26 Jul 2016 22:15:05 +0200
parents 846d4bad2df7
children 441514466726
line wrap: on
line diff
--- a/src/vim.h
+++ b/src/vim.h
@@ -1765,6 +1765,7 @@ int vim_memcmp(void *, void *, size_t);
 # ifndef INIT
 #  define INIT(x) x
 #  define DO_INIT
+#  define COMMA ,
 # endif
 #endif