From 4cf42dadd46ef88b89d69069afbb89c7c6fcaf8d Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Tue, 26 Apr 2011 16:04:54 +0900 Subject: [PATCH] __locale: _isctype --- include/__locale | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/__locale b/include/__locale index 309037cb..ab178c31 100644 --- a/include/__locale +++ b/include/__locale @@ -476,7 +476,7 @@ public: _LIBCPP_ALWAYS_INLINE bool is(mask __m, char_type __c) const { - return isascii(__c) ? (__tab_ ? __tab_[__c] & __m : isctype(__c, __m)) : false; + return isascii(__c) ? (__tab_ ? __tab_[__c] & __m : _isctype(__c, __m)) : false; } _LIBCPP_ALWAYS_INLINE