From 6973d36261d8030c4836a8e25a0e95c19476978e Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Thu, 5 Dec 2013 18:54:47 +0100 Subject: Rien. --- tests/exec/bst.cpp | 2 +- tests/exec/passing.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/exec') diff --git a/tests/exec/bst.cpp b/tests/exec/bst.cpp index e5ccce8..528d6a0 100644 --- a/tests/exec/bst.cpp +++ b/tests/exec/bst.cpp @@ -74,7 +74,7 @@ void BST::add2(int x) { void BST::print() { tree_print(this->root); - std::cout << std::endl; + std::cout << "\n"; } diff --git a/tests/exec/passing.cpp b/tests/exec/passing.cpp index 6354fa5..3a2fbf2 100644 --- a/tests/exec/passing.cpp +++ b/tests/exec/passing.cpp @@ -6,8 +6,8 @@ void incr(int &y) { int main() { int x = 5; - std::cout << "x = " << x << std::endl; + std::cout << "x = " << x << "\n"; incr(x); - std::cout << "x = " << x << std::endl; + std::cout << "x = " << x << "\n"; } -- cgit v1.2.3