From 349b9bb2bf2f5dbc9b2365752b4d516d4ed62147 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Wed, 18 Apr 2001 19:13:11 +0000 Subject: [PATCH] use reserved symbol for detecting sgi [SVN r9835] --- test/comprehensive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/comprehensive.cpp b/test/comprehensive.cpp index aa2d9886..410bd243 100644 --- a/test/comprehensive.cpp +++ b/test/comprehensive.cpp @@ -15,7 +15,7 @@ #include // for pow() #include -#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(x), y); } #endif