no, you don't need it.
let's say we want to switch row j and row k. add row j to row k. then add the new row k back to row j.
now multiply row k by -1, and then add row j to row k again. you should now have what row j originally was in the k-th row (and twice the original row j + the original row k in the j-th row).
now subtract twice the current k-th row from the current j-th row. voila! rows j and k have been switched.
(there may be a shorter way to do this, don't know, don't care).