diff options
author | Sadie Powell <sadie@witchery.services> | 2020-01-16 17:37:51 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-01-16 17:37:51 +0000 |
commit | 2bf0722dde6938f3c423b0c3c8c494ce3f64437d (patch) | |
tree | d51a9e8001858eff0feda22e0d7c868fb74b0f8e /include | |
parent | 8df3d792bc99d9dd73db7a601ebe8d4a397c3522 (diff) |
Fix a GCC shadowing warning.
Diffstat (limited to 'include')
-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); |