From 7e7e6945a044c6df45e9bc168e0c7814432e2ed2 Mon Sep 17 00:00:00 2001 From: Nathan Osman Date: Fri, 14 Oct 2016 00:36:00 -0700 Subject: [PATCH] Fix MSVC template error. --- include/QHttpEngine/qobjecthandler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/QHttpEngine/qobjecthandler.h b/include/QHttpEngine/qobjecthandler.h index 06444ae..6f35a97 100644 --- a/include/QHttpEngine/qobjecthandler.h +++ b/include/QHttpEngine/qobjecthandler.h @@ -133,7 +133,7 @@ public: } template - inline typename QtPrivate::QEnableIf::value, void>::Type + inline typename QtPrivate::QEnableIf::value, void>::Type registerMethod(const QString &name, Func1 slot, bool readAll = true) { registerMethod(name, Q_NULLPTR, slot, readAll); }