Skip to content

Commit

Permalink
Fix bug on ambigous template function (#1113)
Browse files Browse the repository at this point in the history
  • Loading branch information
psakievich committed Jan 18, 2023
1 parent 87e5229 commit edd19cd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions unit_tests/aero/UnitTestDisplacements.C
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@
#include <gtest/gtest.h>
#include <aero/aero_utils/displacements.h>

testing::Message&
operator<<(testing::Message& out, const vs::Vector& vec)
{
out << "(" << vec.x() << " " << vec.y() << " " << vec.z() << ")";
return out;
}

namespace test_displacements {
//! Test that two WM Params give the same end location for a point
void
Expand Down

0 comments on commit edd19cd

Please sign in to comment.