mirror of https://github.com/CGAL/cgal
Replace iword(CGAL::IO::mode) by get_mode
This commit is contained in:
parent
3e3c4658bb
commit
1d798839de
|
|
@ -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() << ", ";
|
||||
|
|
|
|||
Loading…
Reference in New Issue