From d0a4d7362364e40f1012f8f5b533fc98b82da078 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Fri, 30 Aug 2013 14:42:39 +0000 Subject: [PATCH] =?UTF-8?q?Xing=20Xue:=20Fix=20type-o.=20=20Thanks=20to=20?= =?UTF-8?q?C.=20Bergstr=C3=B6m=20for=20spotting=20it.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit llvm-svn: 189674 --- libcxx/include/__locale | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/include/__locale b/libcxx/include/__locale index 2390768ccca2..51fada48ad5c 100644 --- a/libcxx/include/__locale +++ b/libcxx/include/__locale @@ -363,7 +363,7 @@ public: # else static const mask blank = _CTYPE_B; # endif -#elif defined(__sun__) && defined(_AIX) +#elif defined(__sun__) || defined(_AIX) typedef unsigned int mask; static const mask space = _ISSPACE; static const mask print = _ISPRINT;