mirror of https://github.com/CGAL/cgal
add missing IO namespace
This commit is contained in:
parent
d8a6478b57
commit
f1f6126f1c
|
|
@ -700,13 +700,13 @@ public:
|
|||
default:
|
||||
// ASCII
|
||||
os << "Point_2(";
|
||||
os << oformat(this->ptr()->_m_xy);
|
||||
os << ::CGAL::IO::oformat(this->ptr()->_m_xy);
|
||||
os << ",";
|
||||
os << oformat(this->ptr()->_m_x);
|
||||
os << ::CGAL::IO::oformat(this->ptr()->_m_x);
|
||||
os << ",";
|
||||
os << oformat(this->ptr()->_m_curve);
|
||||
os << ::CGAL::IO::oformat(this->ptr()->_m_curve);
|
||||
os << ",";
|
||||
os << oformat(this->ptr()->_m_arcno);
|
||||
os << ::CGAL::IO::oformat(this->ptr()->_m_arcno);
|
||||
os << ",";
|
||||
os << this->ptr()->_m_location;
|
||||
|
||||
|
|
|
|||
|
|
@ -136,8 +136,8 @@ protected:
|
|||
typename Traits::Equal_2 equal = this->m_geom_traits.equal_2_object();
|
||||
if (equal(exp_answer, real_answer)) return true;
|
||||
|
||||
std::string exp_answer_str = boost::lexical_cast<std::string>( oformat(exp_answer) );
|
||||
std::string real_answer_str = boost::lexical_cast<std::string>( oformat(real_answer) );
|
||||
std::string exp_answer_str = boost::lexical_cast<std::string>( CGAL::IO::oformat(exp_answer) );
|
||||
std::string real_answer_str = boost::lexical_cast<std::string>( CGAL::IO::oformat(real_answer) );
|
||||
this->print_answer(exp_answer_str, real_answer_str, "x-monotone curve");
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue