Fixed -Wshadow

This commit is contained in:
Alexey Milovidov 2019-12-23 19:49:06 +03:00
parent 239451a24d
commit 56870c6b3b
2 changed files with 3 additions and 3 deletions

View File

@ -106,8 +106,8 @@ namespace
}
StorageSystemStackTrace::StorageSystemStackTrace(const String & name)
: IStorageSystemOneBlock<StorageSystemStackTrace>(name)
StorageSystemStackTrace::StorageSystemStackTrace(const String & name_)
: IStorageSystemOneBlock<StorageSystemStackTrace>(name_)
{
notification_pipe.open();

View File

@ -20,7 +20,7 @@ public:
String getName() const override { return "SystemStackTrace"; }
static NamesAndTypesList getNamesAndTypes();
StorageSystemStackTrace(const String & name);
StorageSystemStackTrace(const String & name_);
protected:
using IStorageSystemOneBlock::IStorageSystemOneBlock;