blob: b881199733b56eedac8332c28563935bbda86eeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/converter.cpp.orig 2014-07-17 03:34:36.000000000 -0700
+++ src/converter.cpp 2014-07-17 03:36:07.000000000 -0700
@@ -88,7 +88,7 @@
optind++;
const char *ofile = (optind < argc) ? argv[optind] : "converted.tq7";
ofstream out;
- out.open(ofile, ios::out|ios::trunc|ios::binary);
+ out.open(ofile, std::ios::out|std::ios::trunc|std::ios::binary);
if (!out.is_open())
throw myexc(string("Unable to open ") + ofile);
bool haveout = false;
|