diff options
author | David Brazdil <dbrazdil@google.com> | 2015-05-18 09:19:23 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-05-18 09:19:24 +0000 |
commit | c88b09fc1d67413e814a10d20752e46aa28bc0e4 (patch) | |
tree | dff8b80c6c1566e6d1852ea66e92d6af8f637e76 /compiler/optimizing/graph_visualizer.cc | |
parent | aae4334a3f5215edbfe90ab00f8e1e9ade542007 (diff) | |
parent | c57397b2b87c7e6f28f4eee3c996d091e7dc0b01 (diff) |
Merge "ART: Print C1vis lists as [v1,...,vN]"
Diffstat (limited to 'compiler/optimizing/graph_visualizer.cc')
-rw-r--r-- | compiler/optimizing/graph_visualizer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/graph_visualizer.cc b/compiler/optimizing/graph_visualizer.cc index e0a9c6f084..7ea1240c5e 100644 --- a/compiler/optimizing/graph_visualizer.cc +++ b/compiler/optimizing/graph_visualizer.cc @@ -58,7 +58,7 @@ class StringList { if (is_empty_) { is_empty_ = false; } else { - sstream_ << " "; + sstream_ << ","; } return sstream_; } @@ -71,7 +71,7 @@ class StringList { }; std::ostream& operator<<(std::ostream& os, const StringList& list) { - return os << "[ " << list.sstream_.str() << " ]"; + return os << "[" << list.sstream_.str() << "]"; } /** |