Skip to content

Commit

Permalink
Fixed missing namespace in unit test code (#2214)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodolforg authored Jul 11, 2021
1 parent 3573345 commit 960c100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synfig-core/test/bline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
using namespace etl;
using namespace synfig;

ostream& operator<<(ostream& os, const Vector& v)
std::ostream& operator<<(std::ostream& os, const Vector& v)
{
os << '(' << v[0] << ',' << v[1] << ')';
return os;
Expand Down

0 comments on commit 960c100

Please sign in to comment.