From c4fae3510051f7cb2a60eb003d7796aedb7a20b0 Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 14 Mar 2019 18:34:34 +0100 Subject: [PATCH] Reformatted for 80 char rule. --- src/mastodon-cpp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mastodon-cpp.cpp b/src/mastodon-cpp.cpp index 2d7e4bf..38c77bb 100644 --- a/src/mastodon-cpp.cpp +++ b/src/mastodon-cpp.cpp @@ -169,8 +169,8 @@ const curlpp::Forms API::maptoformdata(const parametermap &map) { for (const string &str : it.second) { - formdata.push_back(new curlpp::FormParts::Content(it.first + "[]", - str)); + formdata.push_back( + new curlpp::FormParts::Content(it.first + "[]", str)); } } }