From af75736857213ff99145769883770d4b276a644a Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Mon, 6 Mar 2017 12:48:26 -0800 Subject: [core] Avoid unnecessary convert template instantiations --- test/style/conversion/function.test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/style/conversion/function.test.cpp') diff --git a/test/style/conversion/function.test.cpp b/test/style/conversion/function.test.cpp index 5a3ec93917..4dc6549c78 100644 --- a/test/style/conversion/function.test.cpp +++ b/test/style/conversion/function.test.cpp @@ -13,7 +13,7 @@ using namespace mbgl::style::conversion; auto parseFunction(const std::string& src) { JSDocument doc; doc.Parse<0>(src); - return convert>(doc); + return convert, JSValue>(doc); } TEST(StyleConversion, Function) { -- cgit v1.2.1