mirror of https://github.com/CGAL/cgal
VC8(64bits) doesn't support the _asm keyword
This commit is contained in:
parent
3f0759c010
commit
71e5dbd0c4
|
|
@ -167,7 +167,7 @@ inline double IA_force_to_double(double x)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// std::sqrt(double) on VC++ and CygWin is buggy when not optimizing.
|
// std::sqrt(double) on VC++ and CygWin is buggy when not optimizing.
|
||||||
#ifdef _MSC_VER
|
#if defined ( _MSC_VER ) && ! defined ( _WIN64 )
|
||||||
inline double IA_bug_sqrt(double d)
|
inline double IA_bug_sqrt(double d)
|
||||||
{
|
{
|
||||||
_asm
|
_asm
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue