diff options
author | Howard Hinnant <hhinnant@apple.com> | 2013-08-30 14:42:39 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2013-08-30 14:42:39 +0000 |
commit | d0a4d7362364e40f1012f8f5b533fc98b82da078 (patch) | |
tree | 4b358d47cb0c84ed09b271eecfd87aaa651afa7d | |
parent | 3535e044838ef4e037c49c45d999fb574fc33eb7 (diff) | |
download | bcm5719-llvm-d0a4d7362364e40f1012f8f5b533fc98b82da078.tar.gz bcm5719-llvm-d0a4d7362364e40f1012f8f5b533fc98b82da078.zip |
Xing Xue: Fix type-o. Thanks to C. Bergström for spotting it.
llvm-svn: 189674
-rw-r--r-- | libcxx/include/__locale | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/__locale b/libcxx/include/__locale index 2390768ccca..51fada48ad5 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; |