wasSharp

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 4  →  ?path2? @ 5
/BitTwiddling.cs
@@ -16,7 +16,7 @@
/// </summary>
/// <param name="q">first integer to swap</param>
/// <param name="p">second integer to swap</param>
public static void wasXORSwap(ref int q, ref int p)
public static void XORSwap(ref int q, ref int p)
{
q ^= p;
p ^= q;