From 2bf0722dde6938f3c423b0c3c8c494ce3f64437d Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 16 Jan 2020 17:37:51 +0000 Subject: [PATCH] Fix a GCC shadowing warning. --- include/modules/ctctags.h | 4 ++-- 1 file 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); -- 2.39.5