mirror of https://github.com/CGAL/cgal
Fix is_ascii()
This commit is contained in:
parent
5bd28b4aea
commit
9bd594bf99
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue