View | Details | Raw Unified | Return to bug 191871 | Differences between
and this patch

Collapse All | Expand All

(-)src/converter.cpp (-1 / +1 lines)
Lines 88-94 Link Here
88
		optind++;
88
		optind++;
89
		const char *ofile = (optind < argc) ? argv[optind] : "converted.tq7";
89
		const char *ofile = (optind < argc) ? argv[optind] : "converted.tq7";
90
		ofstream out;
90
		ofstream out;
91
		out.open(ofile, ios::out|ios::trunc|ios::binary);
91
		out.open(ofile, std::ios::out|std::ios::trunc|std::ios::binary);
92
		if (!out.is_open())
92
		if (!out.is_open())
93
			throw myexc(string("Unable to open ") + ofile);
93
			throw myexc(string("Unable to open ") + ofile);
94
		bool haveout = false;
94
		bool haveout = false;
(-)src/gen_crq.cpp (+1 lines)
Lines 31-36 Link Here
31
31
32
using std::cerr;
32
using std::cerr;
33
using std::endl;
33
using std::endl;
34
using std::cout;
34
35
35
int
36
int
36
usage() {
37
usage() {

Return to bug 191871