From e32356eca39af255ae9e4f6cdafaec8d8105fc45 Mon Sep 17 00:00:00 2001 From: keita Date: Fri, 19 Mar 2021 23:05:08 +0900 Subject: [PATCH] =?UTF-8?q?Status::UserTimeline=E3=81=A7std::cout=E3=81=B8?= =?UTF-8?q?=E3=81=AE=E3=83=80=E3=83=B3=E3=83=97=E3=82=92=E6=B6=88=E3=81=97?= =?UTF-8?q?=E3=81=9F(#66)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cocoatweet/api/status/userTimeline.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cocoatweet/api/status/userTimeline.cc b/src/cocoatweet/api/status/userTimeline.cc index 52f3405..7da4a3f 100644 --- a/src/cocoatweet/api/status/userTimeline.cc +++ b/src/cocoatweet/api/status/userTimeline.cc @@ -1,7 +1,6 @@ #include "cocoatweet/api/status/userTimeline.h" #include #include "nlohmann/json.hpp" -#include namespace CocoaTweet::API::Statuses { UserTimeline::UserTimeline() { @@ -20,7 +19,6 @@ std::vector UserTimeline::process( auto json = nlohmann::json::parse(_rcv); for (auto j : json) { tweet.push_back(CocoaTweet::API::Model::Tweet::parse(j.dump())); - std::cout << j.dump() << std::endl; } }); return tweet;