From 72c1286053c879ac1d05f5549f341ac88bd666b8 Mon Sep 17 00:00:00 2001 From: Brad Arant Date: Fri, 20 Jun 2025 00:42:24 +0000 Subject: [PATCH] MFile stuff. --- MFile.cpp | 2 +- MString.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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);