Chromium Code Reviews| Index: runtime/vm/json_stream.h |
| =================================================================== |
| --- runtime/vm/json_stream.h (revision 27344) |
| +++ runtime/vm/json_stream.h (working copy) |
| @@ -124,7 +124,7 @@ |
| JSONArray(const JSONObject& obj, const char* name) : stream_(obj.stream_) { |
| stream_->OpenArray(name); |
| } |
| - JSONArray(const JSONArray& arr) : stream_(arr.stream_) { |
| + explicit JSONArray(const JSONArray& arr) : stream_(arr.stream_) { |
| stream_->OpenArray(); |
| } |
| ~JSONArray() { |