From c306133a50a90bf7574ddb78e01e0117286bbf18 Mon Sep 17 00:00:00 2001 From: John Colvin Date: Thu, 2 Oct 2014 15:22:34 +0100 Subject: [PATCH] avoid builtin sort dmd warns about this now --- src/client.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.d b/src/client.d index ae2baf8..3fb554f 100644 --- a/src/client.d +++ b/src/client.d @@ -319,7 +319,7 @@ void printCompletionResponse(AutocompleteResponse response) } } // Deduplicate overloaded methods - foreach (line; app.data.sort.uniq) + foreach (line; app.data.sort().uniq) writeln(line); } }