diff options
author | Adam <Adam@anope.org> | 2016-11-30 13:13:41 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-11-30 14:02:45 -0500 |
commit | 2f512281029fbf4f7ef9832e05804831ad2d9ba2 (patch) | |
tree | 10699640af6519991e2de009ffb4317daf4afd79 /include/protocol.h | |
parent | a2047d559972df3e3a1e423827c449accbe1ddd1 (diff) |
Fix some field shadowing warnings
Diffstat (limited to 'include/protocol.h')
-rw-r--r-- | include/protocol.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/protocol.h b/include/protocol.h index f7e7460f0..7475fed21 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -340,9 +340,9 @@ class IRCMessage return source; } - void SetSource(const MessageSource &source) + void SetSource(const MessageSource &_source) { - this->source = source; + this->source = _source; } const Anope::string &GetCommand() const |