2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 16:32:16 +00:00

use reserved symbol for detecting sgi

[SVN r9835]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2001-04-18 19:13:11 +00:00
parent cbff11296b
commit 349b9bb2bf

View File

@@ -15,7 +15,7 @@
#include <math.h> // for pow()
#include <boost/rational.hpp>
#if defined(sgi) && defined(_COMPILER_VERSION) && _COMPILER_VERSION <= 730
#if defined(__sgi) && defined(_COMPILER_VERSION) && _COMPILER_VERSION <= 730
inline double pow(int x, int y) { return pow(static_cast<double>(x), y); }
#endif