You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In test_dependency_finder.cpp we stream messages into tests, e.g.
EXPECT_LT( bIt - ordering.begin(), aIt - ordering.begin() ) << "Ordering: " << ordering << endl;
and this doesn't compile with some compiler/googletest combinations — for example clang and googletest 1.12.1_1 (what I'm using currently) — while it does work with e.g. @pralitp 's gcc and 1.11.0-3.
In
test_dependency_finder.cpp
we stream messages into tests, e.g.EXPECT_LT( bIt - ordering.begin(), aIt - ordering.begin() ) << "Ordering: " << ordering << endl;
and this doesn't compile with some compiler/googletest combinations — for example clang and googletest 1.12.1_1 (what I'm using currently) — while it does work with e.g. @pralitp 's gcc and 1.11.0-3.
See #664 (comment)
I commented out these streamed messages, so as to merge #664 and get to v3, but in 2023 let's revisit.
The text was updated successfully, but these errors were encountered: