debug output, as I cannot reproduce locally

This commit is contained in:
Andreas Fabri 2023-03-07 13:20:18 +00:00
parent 7106e960e2
commit 8b200b25be
2 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,7 @@ void test_io(){
std::stringstream ss;
CGAL::IO::set_pretty_mode(ss);
ss << CGAL::IO::oformat(NT(1), CGAL::Parens_as_product_tag());
std::cout << "|" << ss.str() << "|" << std::endl;
assert( ss.str() == "1");
}{
std::stringstream ss;

View File

@ -37,6 +37,7 @@ void test_io(){
std::stringstream ss;
CGAL::IO::set_pretty_mode(ss);
ss << CGAL::IO::oformat(NT(2), CGAL::Parens_as_product_tag());
std::cout << "|" << ss.str() << "|" << std::endl;
assert( ss.str() == "2");
}{
std::stringstream ss;