We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f095b5 commit ea573e6Copy full SHA for ea573e6
libcxx/include/__locale
@@ -516,7 +516,7 @@ protected:
516
};
517
#endif // _LIBCPP_HAS_WIDE_CHARACTERS
518
519
-inline _LIBCPP_HIDE_FROM_ABI int __libcpp_isascii(int __c) { return (__c & ~0x7F) == 0; }
+inline _LIBCPP_HIDE_FROM_ABI bool __libcpp_isascii(int __c) { return (__c & ~0x7F) == 0; }
520
521
template <>
522
class _LIBCPP_EXPORTED_FROM_ABI ctype<char> : public locale::facet, public ctype_base {
0 commit comments