diff --git a/Testing/Unit/SimpleITKTestHarness.h b/Testing/Unit/SimpleITKTestHarness.h index cf9ed12fb3..ef8eb27543 100644 --- a/Testing/Unit/SimpleITKTestHarness.h +++ b/Testing/Unit/SimpleITKTestHarness.h @@ -26,7 +26,6 @@ // This is needed before the gtest include for lookup of the operator // to work with clang 5.1 -namespace { inline std::ostream& operator<< (std::ostream& os, const std::vector& v) { if ( v.empty() ) @@ -38,7 +37,6 @@ inline std::ostream& operator<< (std::ostream& os, const std::vector& v) std::copy( v.begin(), v.end()-1, std::ostream_iterator(os, ", ") ); return os << v.back() << " ]"; } -} #include #include