summaryrefslogtreecommitdiff
path: root/src/irc/iid.hpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2016-09-22 00:00:13 +0200
committerlouiz’ <louiz@louiz.org>2016-09-22 00:00:13 +0200
commit07e2209596a1fbcc1d6f97d68bfda8e2add19ea2 (patch)
treeee244f8ddf7dcb4731d34a5c5a27c1c7daa917a1 /src/irc/iid.hpp
parent35fc5d6f290eeccd6d2f7267eed7355ed59d356e (diff)
downloadbiboumi-07e2209596a1fbcc1d6f97d68bfda8e2add19ea2.tar.gz
biboumi-07e2209596a1fbcc1d6f97d68bfda8e2add19ea2.tar.bz2
biboumi-07e2209596a1fbcc1d6f97d68bfda8e2add19ea2.tar.xz
biboumi-07e2209596a1fbcc1d6f97d68bfda8e2add19ea2.zip
Add the missing & for 3 std::string function arguments
Diffstat (limited to 'src/irc/iid.hpp')
-rw-r--r--src/irc/iid.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/iid.hpp b/src/irc/iid.hpp
index 7361c51..a857ae9 100644
--- a/src/irc/iid.hpp
+++ b/src/irc/iid.hpp
@@ -58,7 +58,7 @@ public:
Iid(const std::string& iid, const std::set<char>& chantypes);
Iid(const std::string& iid, const std::initializer_list<char>& chantypes);
Iid(const std::string& iid, const Bridge* bridge);
- Iid(const std::string local, const std::string server, Type type);
+ Iid(const std::string& local, const std::string& server, Type type);
Iid() = default;
Iid(const Iid&) = default;