Update Flush return.

This commit is contained in:
Kyle Isom 2023-10-14 23:47:37 -07:00
parent a00d358b15
commit 467bb064c7
1 changed files with 3 additions and 3 deletions

View File

@ -26,11 +26,11 @@ public:
Buffer::FileStatus Refresh(); Buffer::FileStatus Refresh();
/// Flush will attempt to write the active buffer. /// Flush will attempt to write the active buffer.
bool Flush(); Buffer::FileStatus Flush();
private: private:
std::map<std::string, Buffer *> bmap; std::map<std::string, Buffer *> bmap;
std::string activeBuffer; std::string activeBuffer;
}; };