Remove inline qualifier of isl_sioimath_gcd
commit8cb35b08a54868fab7c805bdbe62b236f258b79f
authorMichael Kruse <isl@meinersbur.de>
Sat, 18 Jul 2015 13:58:01 +0000 (18 15:58 +0200)
committerSven Verdoolaege <skimo@kotnet.org>
Sat, 18 Jul 2015 15:57:07 +0000 (18 17:57 +0200)
tree07e5a316abaca0dee3bbb8d0e0830ea0bcf6eb2d
parent823f48bad320c036779e7427900f3a5dcecf13c3
Remove inline qualifier of isl_sioimath_gcd

isl_sioimath_gcd is referenced only outside of isl_int_sioimath.c, i.e.
the inline qualifier does not make sense. It still has external linkage
because of a forward declaration without inline qualifier in
isl_int_sioimath.h.

Visual Studio however ignores the forward declaration and therefore
does not generate a isl_sioimath_gcd symbol which results in a link
error.

This is fixed by removing the inline qualifier, declaring it
unambiguously with external linkage.

Signed-off-by: Michael Kruse <isl@meinersbur.de>
Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
isl_int_sioimath.c