summaryrefslogtreecommitdiff
path: root/src/jit/jitstd/type_traits.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/jitstd/type_traits.h')
-rw-r--r--src/jit/jitstd/type_traits.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/jit/jitstd/type_traits.h b/src/jit/jitstd/type_traits.h
index 1e853e8cca..f0f8518c40 100644
--- a/src/jit/jitstd/type_traits.h
+++ b/src/jit/jitstd/type_traits.h
@@ -178,14 +178,15 @@ struct make_unsigned<int>
typedef unsigned int type;
};
-#ifndef PLATFORM_UNIX
+#ifndef _HOST_UNIX_
template<>
struct make_unsigned<long>
{
typedef unsigned long type;
};
-#endif // PLATFORM_UNIX
+
+#endif // !_HOST_UNIX_
template<>
struct make_unsigned<__int64>