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:
Aleksandar Fabijanic
2008-06-01 14:33:45 +00:00
parent 1d27e75989
commit 0a1c616368
5 changed files with 31 additions and 4 deletions

View File

@@ -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]);
}