diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-09-23 19:11:48 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-09-23 19:11:48 +0200 |
commit | 60d340be19aa4370620181b56a6d4ccdcfa014dc (patch) | |
tree | aa2b5dc37de50405b5ef6628dcffe1f06de08110 | |
parent | 2380a84ba5d304861cd21eb3a2e57d76e32536a0 (diff) | |
download | biboumi-60d340be19aa4370620181b56a6d4ccdcfa014dc.tar.gz biboumi-60d340be19aa4370620181b56a6d4ccdcfa014dc.tar.bz2 biboumi-60d340be19aa4370620181b56a6d4ccdcfa014dc.tar.xz biboumi-60d340be19aa4370620181b56a6d4ccdcfa014dc.zip |
TIL std::string::end and std::string::begin…
-rw-r--r-- | src/xmpp/biboumi_adhoc_commands.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/xmpp/biboumi_adhoc_commands.cpp b/src/xmpp/biboumi_adhoc_commands.cpp index d9162d7..19e6a71 100644 --- a/src/xmpp/biboumi_adhoc_commands.cpp +++ b/src/xmpp/biboumi_adhoc_commands.cpp @@ -264,8 +264,7 @@ void ConfigureIrcServerStep2(XmppComponent*, AdhocSession& session, XmlNode& com { auto username = value->get_inner(); // The username must not contain spaces - std::replace(&username[0], &username[username.size() - 1], - ' ', '_'); + std::replace(username.begin(), username.end(), ' ', '_'); options.username = username; } |