From a2d3499da8cc4f37d8ecb901f817d31cdbad7003 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Fri, 19 Apr 2019 08:59:32 +0200 Subject: [PATCH] Add private imports explicitly --- source/dlangbot/app.d | 1 + 1 file changed, 1 insertion(+) diff --git a/source/dlangbot/app.d b/source/dlangbot/app.d index c468e82..573bf88 100644 --- a/source/dlangbot/app.d +++ b/source/dlangbot/app.d @@ -331,6 +331,7 @@ void handlePR(string action, PullRequest* _pr) import std.algorithm.searching : canFind, all, startsWith; import std.array : array, assocArray, join, replace; import std.regex : regex, matchAll; + import std.typecons : tuple; auto oldComments = getBugComments(refs.map!(r => r.id).array);