2
0
mirror of https://github.com/boostorg/uuid.git synced 2026-01-19 04:42:16 +00:00

Avoid -Wshadow warning in test_tagging.cpp

This commit is contained in:
Peter Dimov
2026-01-04 17:06:21 +02:00
parent 09a6a81b6b
commit da2cb7cc02

View File

@@ -21,9 +21,9 @@ public:
, state(0)
{}
explicit object(int state)
explicit object(int st)
: tag(boost::uuids::random_generator()())
, state(state)
, state(st)
{}
object(object const& rhs)