diff options
author | jan Iversen <jani@documentfoundation.org> | 2016-12-27 10:47:37 +0100 |
---|---|---|
committer | jan Iversen <jani@documentfoundation.org> | 2016-12-27 10:49:15 +0100 |
commit | ae02f60cc0fb8a44addcc95d50142a57d3b8a48e (patch) | |
tree | 0ce2e5485c947f89ba53b6358bd8cc8516af8fd0 /solenv/gbuildtojson | |
parent | 702c8c59a5d5dfe839a44da511971470354e2a41 (diff) |
make the gbuildtojson output debugable.
Added a NEWLINE after each JSON variable, this makes the files
easier readable and has no impact on performance.
Change-Id: I5610c79ba74d6d34b7c4bacd0ba8626d37cb4e70
Diffstat (limited to 'solenv/gbuildtojson')
-rw-r--r-- | solenv/gbuildtojson/gbuildtojson.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuildtojson/gbuildtojson.cxx b/solenv/gbuildtojson/gbuildtojson.cxx index 6b3367dea6e2..96d38eaafccd 100644 --- a/solenv/gbuildtojson/gbuildtojson.cxx +++ b/solenv/gbuildtojson/gbuildtojson.cxx @@ -75,7 +75,7 @@ int main(int argc, char** argv) if(first) first =false; else - cout << ", "; + cout << "," << endl; string varupper(varandfile.first); for(auto& c : varupper) if(c != '_') |