summaryrefslogtreecommitdiff
path: root/2005/i/robert/src/utils
diff options
context:
space:
mode:
authorschodet2005-04-13 21:08:17 +0000
committerschodet2005-04-13 21:08:17 +0000
commita4b8081ccc7a873d178fc06e40272d4c41efb1b2 (patch)
tree2be15f96af6eefab8a623a6d0177fa5fabf1f3e1 /2005/i/robert/src/utils
parentaffc465467f55b37cbde63b1c60aa5298a14da4f (diff)
Trick de l'espace en plus.
Diffstat (limited to '2005/i/robert/src/utils')
-rw-r--r--2005/i/robert/src/utils/list_ostream_output.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/2005/i/robert/src/utils/list_ostream_output.hh b/2005/i/robert/src/utils/list_ostream_output.hh
index 0141d51..3863a39 100644
--- a/2005/i/robert/src/utils/list_ostream_output.hh
+++ b/2005/i/robert/src/utils/list_ostream_output.hh
@@ -36,7 +36,7 @@ template<typename T>
std::ostream &
output_list (std::ostream &os, const T &list)
{
- os << '(';
+ os << "( ";
std::copy (list.begin (), list.end (),
std::ostream_iterator<typename T::value_type> (os, " "));
os << ')';