Replace iword(CGAL::IO::mode) by get_mode

This commit is contained in:
Guillaume Damiand 2015-10-15 14:21:15 +02:00
parent 3e3c4658bb
commit 1d798839de
1 changed files with 3 additions and 3 deletions

View File

@ -105,7 +105,7 @@ operator<<(std::ostream &os,
::Vertex_const_iterator
i;
switch(os.iword(IO::mode)) {
switch(get_mode(os)) {
case IO::ASCII :
os << p.size() << ' ';
for (i = p.vertices_begin(); i != p.vertices_end(); ++i) {
@ -278,7 +278,7 @@ operator<<(std::ostream &os,
{
typename Polychainray_2<Traits_P,Container_P>::Vertex_const_iterator i;
switch(os.iword(IO::mode)) {
switch(get_mode(os)) {
case IO::ASCII :
os << p.size() << ' ';
for (i = p.vertices_begin(); i != p.vertices_end(); ++i) {
@ -794,7 +794,7 @@ operator<<(std::ostream &os,
{
typename Polychainline_2<Traits_P,Container_P>::Vertex_const_iterator i;
switch(os.iword(IO::mode)) {
switch(get_mode(os)) {
case IO::ASCII :
os << p.size() << ' ';
os << ", dinc=" << p.get_incoming() << ", ";