aboutsummaryrefslogtreecommitdiff
path: root/lib/converters.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-06-09 23:06:52 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-06-09 23:06:52 +0900
commitb0d1808e2732bbba2782321b2e39ec1cab96d885 (patch)
tree8fd57d8781b856fcf883771cb203325ff86c7982 /lib/converters.h
parent46801080846d58ab1528e921bebcb14e651f7956 (diff)
downloadlibquotient-b0d1808e2732bbba2782321b2e39ec1cab96d885.tar.gz
libquotient-b0d1808e2732bbba2782321b2e39ec1cab96d885.zip
converters.h: drop unneeded template<> line
Diffstat (limited to 'lib/converters.h')
-rw-r--r--lib/converters.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/converters.h b/lib/converters.h
index 7de33c9b..eaf2a32e 100644
--- a/lib/converters.h
+++ b/lib/converters.h
@@ -342,7 +342,6 @@ namespace QMatrixClient
// OpenAPI is entirely JSON-based, which means representing bools as
// textual true/false, rather than 1/0.
- template <typename ValT>
inline void addTo(QUrlQuery& q, const QString& k, bool v)
{
q.addQueryItem(k, v ? QStringLiteral("true")