From a9d33aa08df10102539e33c0c6d4334e9e99a470 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 30 Aug 2018 20:38:37 -0400 Subject: Started using hkutil As of this commit, the only change is using hatkirby::implode instead of the implode that was in util.cpp. --- src/timeline.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/timeline.cpp') diff --git a/src/timeline.cpp b/src/timeline.cpp index fd75a69..280c814 100644 --- a/src/timeline.cpp +++ b/src/timeline.cpp @@ -1,8 +1,8 @@ #include "timeline.h" #include #include +#include #include "codes.h" -#include "util.h" #include "request.h" namespace twitter { @@ -40,7 +40,8 @@ namespace twitter { if (!arguments.empty()) { urlstr << "?"; - urlstr << implode(std::begin(arguments), std::end(arguments), "&"); + urlstr << hatkirby::implode( + std::begin(arguments), std::end(arguments), "&"); } std::string theUrl = urlstr.str(); -- cgit 1.4.1