Permalink
Fetching contributors…
Cannot retrieve contributors at this time
17 lines (13 sloc) 236 Bytes
/*
* edit.cpp
*
* Created on: Jul 14, 2009
* Author: Ben Langmead
*/
#include <iostream>
#include "edit.h"
using namespace std;
ostream& operator<< (ostream& os, const Edit& e) {
os << e.pos << (char)e.chr;
return os;
}