From 810c4343c72b0a5ac61155f2a71a969fc5f8ea9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Tue, 13 Dec 2016 23:01:32 +0100 Subject: Remove the useless nullptr argument for the XmlNode constructor --- louloulibs/xmpp/xmpp_component.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/louloulibs/xmpp/xmpp_component.cpp b/louloulibs/xmpp/xmpp_component.cpp index c842701..32702d1 100644 --- a/louloulibs/xmpp/xmpp_component.cpp +++ b/louloulibs/xmpp/xmpp_component.cpp @@ -172,8 +172,8 @@ void XmppComponent::on_stanza(const Stanza& stanza) void XmppComponent::send_stream_error(const std::string& name, const std::string& explanation) { - XmlNode node("stream:error", nullptr); - XmlNode error(name, nullptr); + XmlNode node("stream:error"); + XmlNode error(name); error["xmlns"] = STREAM_NS; if (!explanation.empty()) error.set_inner(explanation); -- cgit v1.2.3