mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-25 15:19:21 +01:00
SF items:
[1981125] std::swap_ranges overloading resolution failed [1981130] pointless comparison of unsigned integer with zero [1981139] initial value of reference to non-const must be an lvalue Buffer test FunctionDelegate comment spelling
This commit is contained in:
@@ -137,7 +137,7 @@ void UUID::swap(UUID& uuid)
|
||||
std::swap(_timeMid, uuid._timeMid);
|
||||
std::swap(_timeHiAndVersion, uuid._timeHiAndVersion);
|
||||
std::swap(_clockSeq, uuid._clockSeq);
|
||||
std::swap_ranges(_node, _node + 6, uuid._node);
|
||||
std::swap_ranges(_node, _node + 6, &uuid._node[0]);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user