summaryrefslogtreecommitdiff
path: root/src/mongo/base
diff options
context:
space:
mode:
authorEric Milkie <milkie@10gen.com>2013-03-14 13:03:39 -0400
committerEric Milkie <milkie@10gen.com>2013-03-14 13:03:39 -0400
commite82e93e4fee859dc020e7c5391db5a37e62a9c7a (patch)
tree02b69de079e708e13108289a6a8aaad91f9f8b29 /src/mongo/base
parentcb7e10a27b58b860880d9fd38c3d1bd2000bbe83 (diff)
downloadmongo-e82e93e4fee859dc020e7c5391db5a37e62a9c7a.tar.gz
SERVER-8936 use proper macro name for Solaris
Diffstat (limited to 'src/mongo/base')
-rw-r--r--src/mongo/base/parse_number_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/base/parse_number_test.cpp b/src/mongo/base/parse_number_test.cpp
index 82c70bf6fb7..89535b3d3da 100644
--- a/src/mongo/base/parse_number_test.cpp
+++ b/src/mongo/base/parse_number_test.cpp
@@ -285,7 +285,7 @@ namespace {
ASSERT_PARSES(double, "12e-8", 12e-8);
ASSERT_PARSES(double, "-485.381e-8", -485.381e-8);
-#if !(defined(_WIN32) || defined(__sunos))
+#if !(defined(_WIN32) || defined(__sunos__))
// Parse hexadecimal representations of a double. Hex literals not supported by MSVC, and
// not parseable by the Windows SDK libc or the Solaris libc in the mode we build.