Fixed -Wshadow warning.

This commit is contained in:
N. Kolotov 2021-05-03 01:56:41 +03:00
parent e0f68a4356
commit 3aa8d04b74

View File

@ -660,9 +660,9 @@ public:
{ }
/* implicit */
StdAllocator(const BaseAllocator& allocator) RAPIDJSON_NOEXCEPT :
StdAllocator(const BaseAllocator& baseAllocator) RAPIDJSON_NOEXCEPT :
allocator_type(),
baseAllocator_(allocator)
baseAllocator_(baseAllocator)
{ }
~StdAllocator() RAPIDJSON_NOEXCEPT