From 84f856a228f0a8472ba8bad893b31aae1c077401 Mon Sep 17 00:00:00 2001 From: RazvanN7 Date: Fri, 26 Jan 2018 11:35:31 +0200 Subject: [PATCH] Fix ambigous alias --- source/ggplotd/meta.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ggplotd/meta.d b/source/ggplotd/meta.d index 916d66a..1030f4f 100644 --- a/source/ggplotd/meta.d +++ b/source/ggplotd/meta.d @@ -6,7 +6,7 @@ import std.traits; static if (__traits(hasMember, std.meta, "ApplyLeft")) { import std.meta : ApplyLeft; - alias ApplyLeft = ApplyLeft; + alias ApplyLeft = std.meta.ApplyLeft; } else { // Compatibility with older versions template ApplyLeft(alias Template, args...) {