fixing non-elided stringstream copies in test, fewer travis builds

This commit is contained in:
badair
2016-03-25 16:14:42 -05:00
parent 32de0af258
commit 25323e2f96
3 changed files with 3 additions and 25 deletions

View File

@@ -43,7 +43,7 @@ DEFINE_TEST_LETTER(G);
// with ct::bind_expr
auto ordered_letters(A a, B b, C c, D d, E e, F f, G g) {
auto ss = std::stringstream{};
std::stringstream ss{};
ss << a << b << c << d << e << f << g;
return ss.str();
}