Skip to content

Commit e11d52a

Browse files
committed
[tests] unsupported character for Windows......
1 parent 15c458d commit e11d52a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/core/domains/tube/codac2_Slice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ namespace codac2
546546
friend inline std::ostream& operator<<(std::ostream& os, const Slice& x)
547547
{
548548
os << x.t0_tf()
549-
<< "" << x.codomain()
549+
<< "->" << x.codomain()
550550
<< std::flush;
551551
return os;
552552
}

src/core/domains/tube/codac2_SlicedTube.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ namespace codac2
656656
friend inline std::ostream& operator<<(std::ostream& os, const SlicedTube<T>& x)
657657
{
658658
os << x.t0_tf()
659-
<< "" << (x.is_empty() ? x.empty_value() : x.codomain())
659+
<< "->" << (x.is_empty() ? x.empty_value() : x.codomain())
660660
<< ", " << x.nb_slices()
661661
<< " slice" << (x.nb_slices() > 1 ? "s" : "")
662662
<< std::flush;

src/core/functions/analytic/codac2_AnalyticFunction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ namespace codac2
256256
os << "(";
257257
for(size_t i = 0 ; i < f.args().size() ; i++)
258258
os << (i!=0 ? "," : "") << f.args()[i]->name();
259-
os << ") " << f.expr()->str();
259+
os << ") -> " << f.expr()->str();
260260
return os;
261261
}
262262

src/core/trajectory/codac2_SampledTraj.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ namespace codac2
402402
template<typename T>
403403
inline std::ostream& operator<<(std::ostream& os, const SampledTraj<T>& x)
404404
{
405-
os << "SampledTraj. " << x.tdomain() << "";
405+
os << "SampledTraj. " << x.tdomain() << "->";
406406
if constexpr(std::is_same_v<T,Vector>)
407407
{
408408
os << "[";

0 commit comments

Comments
 (0)