Skip to content

Commit 79222b6

Browse files
committed
Merge pull request #409 from redboltz/fix_wshadow
Fixed -Wshadow warning.
2 parents 83f0429 + b8530e3 commit 79222b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/msgpack/object_fwd.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ struct object_kv {
255255
};
256256

257257
struct object::with_zone : object {
258-
with_zone(msgpack::zone& zone) : zone(zone) { }
258+
with_zone(msgpack::zone& z) : zone(z) { }
259259
msgpack::zone& zone;
260260
private:
261261
with_zone();

0 commit comments

Comments
 (0)