diff options
| author | 2020-01-16 17:37:51 +0000 | |
|---|---|---|
| committer | 2020-01-16 17:37:51 +0000 | |
| commit | 2bf0722dde6938f3c423b0c3c8c494ce3f64437d (patch) | |
| tree | d51a9e8001858eff0feda22e0d7c868fb74b0f8e /include/modules | |
| parent | Fix STATUSMSG tag messages not including the status in the target. (diff) | |
Fix a GCC shadowing warning.
Diffstat (limited to 'include/modules')
| -rw-r--r-- | include/modules/ctctags.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules/ctctags.h b/include/modules/ctctags.h index 6b7f81a4c..68b8bcfdc 100644 --- a/include/modules/ctctags.h +++ b/include/modules/ctctags.h @@ -68,8 +68,8 @@ private: AddTags(Tags); } - TagMessage(const char* sourcestr, const char* targetstr, const ClientProtocol::TagMap& Tags, char status = 0) - : ClientProtocol::Message("TAGMSG", sourcestr) + TagMessage(const char* source, const char* targetstr, const ClientProtocol::TagMap& Tags, char status = 0) + : ClientProtocol::Message("TAGMSG", source) { PushTarget(targetstr, status); AddTags(Tags); |
