commit | 95cfb818eaffba41333d4bc93253f4e0c6237ca8 | [log] [tgz] |
---|---|---|
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | Fri Oct 26 10:28:26 2018 -0700 |
committer | GitHub <noreply@github.com> | Fri Oct 26 10:28:26 2018 -0700 |
tree | 315741d14893d265295e103e49198f4794150c17 | |
parent | bb1876acd815a05744cea4a7d4098231ef499e52 [diff] |
bpo-35059, libmpdec: Add missing EXTINLINE in mpdecimal.h (GH-10128) Declare functions with EXTINLINE: * mpd_del() * mpd_uint_zero() * mpd_qresize() * mpd_qresize_zero() * mpd_minalloc() These functions are implemented with "inline" or "ALWAYS_INLINE", but declared without inline which cause linker error on Visual Studio in Debug mode when using /Ob1. (cherry picked from commit 3b1cba3701fd1321a9bdafa9e683f891369f0cfd) Co-authored-by: Victor Stinner <vstinner@redhat.com>