diff --git a/MFile.cpp b/MFile.cpp index 652c99c..f35044d 100644 --- a/MFile.cpp +++ b/MFile.cpp @@ -6,7 +6,7 @@ namespace coreutils { MFile::MFile(coreutils::MString fileName) : fileName(fileName) { inFile.open(fileName.c_str()); - *this << inFile; +// *this << inFile; inFile.close(); } diff --git a/MString.cpp b/MString.cpp index 9ce70fa..1c86002 100644 --- a/MString.cpp +++ b/MString.cpp @@ -216,9 +216,9 @@ namespace coreutils { return *this; } - MString &operator<<(std::ostream &out) { - *this << out; - } +// MString &operator<<(std::ostream &out) { +// *this << out; +// } void MString::insert(char ch, int offset) { setSize(length + 1);