summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2013-11-21 00:58:14 +0100
committerFlorent Le Coz <louiz@louiz.org>2013-11-21 00:58:14 +0100
commitbfcc9cdc7462c515c308592735bc661103fb92b5 (patch)
tree60b3a715ef01bb75786fd238ab683f430a9e5d3d /src/utils
parent70a58a8f7152e775a1c6cdc15b3c9f23a7719f85 (diff)
downloadbiboumi-bfcc9cdc7462c515c308592735bc661103fb92b5.tar.gz
biboumi-bfcc9cdc7462c515c308592735bc661103fb92b5.tar.bz2
biboumi-bfcc9cdc7462c515c308592735bc661103fb92b5.tar.xz
biboumi-bfcc9cdc7462c515c308592735bc661103fb92b5.zip
Send XMPP multi-line messages as multiple IRC messages
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/split.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/split.cpp b/src/utils/split.cpp
index 82852ee..afe4300 100644
--- a/src/utils/split.cpp
+++ b/src/utils/split.cpp
@@ -2,7 +2,7 @@
namespace utils
{
- std::vector<std::string> split(const std::string &s, const char delim, const bool allow_empty)
+ std::vector<std::string> split(const std::string& s, const char delim, const bool allow_empty)
{
std::vector<std::string> ret;
std::stringstream ss(s);