Fix is_ascii()

This commit is contained in:
Mael 2020-08-03 12:03:33 +02:00 committed by GitHub
parent 5bd28b4aea
commit 9bd594bf99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -562,7 +562,7 @@ checks if the %IO stream `s` is in `IO::ASCII` mode.
\sa `CGAL::is_binary()`
\sa `CGAL::is_pretty()`
*/
inline bool is_ascii(std::ios& i) { return i.iword(IO::Static::get_mode()) == IO::BINARY; }
inline bool is_ascii(std::ios& i) { return i.iword(IO::Static::get_mode()) == IO::ASCII; }
/*!
\ingroup PkgStreamSupportRef