From 3df84fd8a0ce3959c0deb4c206d910fc0d050f47 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Thu, 10 Jun 2010 23:17:07 -0700 Subject: ruby: get rid of the Map class --- src/base/stl_helpers.hh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/base/stl_helpers.hh') diff --git a/src/base/stl_helpers.hh b/src/base/stl_helpers.hh index 740bd1b48..9add7b8b6 100644 --- a/src/base/stl_helpers.hh +++ b/src/base/stl_helpers.hh @@ -60,12 +60,13 @@ class ContainerPrint void operator()(const T &elem) { - out << elem; // First one doesn't get a space before it. The rest do. if (first) first = false; else out << " "; + + out << elem; } }; -- cgit v1.2.3