Fix classic_table implementation for bionic

Change-Id: I26716b16bddcfb7109f436822067950fd99a5c08
This commit is contained in:
Dan Albert
2014-04-17 17:42:46 -07:00
parent c13109d445
commit 2517f4fe31
2 changed files with 5 additions and 1 deletions

View File

@@ -1039,6 +1039,8 @@ ctype<char>::classic_table() _NOEXCEPT
return *__ctype_b_loc();
#elif defined(_AIX)
return (const unsigned int *)__lc_ctype_ptr->obj->mask;
#elif defined(__ANDROID__)
return _ctype_;
#else
// Platform not supported: abort so the person doing the port knows what to
// fix