commit | 442b4225d3310599a8bc9107dc3f7b4153a286c4 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon May 24 21:34:22 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon May 24 21:34:22 2010 +0200 |
tree | 518b9298185272fad43e5afbc8a7cde21dc867e8 | |
parent | e66194a54e0303568e7db1cb8772e2709afd864c [diff] [blame] |
Improve the MS-Windows installer.
diff --git a/src/vim.h b/src/vim.h index 86d677b..8ae6856 100644 --- a/src/vim.h +++ b/src/vim.h
@@ -1943,6 +1943,11 @@ #pragma option -p. #endif +#ifdef _MSC_VER +/* Avoid useless warning "conversion from X to Y of greater size". */ + #pragma warning(disable : 4312) +#endif + #if defined(MEM_PROFILE) # define vim_realloc(ptr, size) mem_realloc((ptr), (size)) #else